From bf352b0b29a8e3d55eaa986c4f493af48f8ddf52 Mon Sep 17 00:00:00 2001 From: barras Date: Thu, 3 May 2001 09:54:17 +0000 Subject: Changement de la structure des points fixes git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@1731 85f007b7-540e-0410-9357-904b9bb8a0f7 --- contrib/interface/Centaur.v | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'contrib/interface') diff --git a/contrib/interface/Centaur.v b/contrib/interface/Centaur.v index 80142df4d0..f2e1686455 100644 --- a/contrib/interface/Centaur.v +++ b/contrib/interface/Centaur.v @@ -34,15 +34,15 @@ Grammar vernac vernac : ast := (* | show_dad_rules [ "Show" "Dad" "Rules" "." ] -> [(Show_dad_rules)] *) | start_pcoq [ "Start" "Pcoq" "Mode" "." ] -> [ (START_PCOQ) ] | start_pcoq [ "Start" "Pcoq" "Debug" "Mode" "." ] -> [ (START_PCOQ_DEBUG) ]. -Grammar vernac ne_id_list : List := +Grammar vernac ne_id_list : ast list := id_one [ identarg($id)] -> [$id] | id_more [identarg($id) ne_id_list($others)] -> [$id ($LIST $others)]. -Grammar tactic ne_num_list : List := +Grammar tactic ne_num_list : ast list := ne_last [ numarg($n) ] -> [ $n ] | ne_num_ste [ numarg($n) ne_num_list($ns) ] -> [ $n ($LIST $ns)]. -Grammar tactic two_numarg_list : List := +Grammar tactic two_numarg_list : ast list := two_single_and_ne [ numarg($n) "to" ne_num_list($ns)] -> [$n (TACTIC (to)) ($LIST $ns)] | two_rec [ numarg($n) two_numarg_list($ns)] -> [ $n ($LIST $ns)]. -- cgit v1.2.3