aboutsummaryrefslogtreecommitdiffhomepage
path: root/contrib/ring/g_quote.ml4
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2005-12-26 14:06:51 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2005-12-26 14:06:51 +0000
commit1061eb505a223ac7cbcec0c5ae9354cd24d9b054 (patch)
treea13186a5cb22e178f8e9915899be06b5ab1fe736 /contrib/ring/g_quote.ml4
parentf6e1acbbe00aeb479fde229c3941e3a6a2d53068 (diff)
Suppression des parseurs et printeurs v7; suppression du traducteur (mcanismes de renommage des noms de constantes, de module, de ltac et de certaines variables lies de lemmes et de tactiques, mcanisme d'ajout d'arguments implicites, etc.)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@7734 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'contrib/ring/g_quote.ml4')
-rw-r--r--contrib/ring/g_quote.ml46
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/ring/g_quote.ml4 b/contrib/ring/g_quote.ml4
index e439feb8c..808cbbf27 100644
--- a/contrib/ring/g_quote.ml4
+++ b/contrib/ring/g_quote.ml4
@@ -12,7 +12,7 @@
open Quote
-TACTIC EXTEND Quote
- [ "Quote" ident(f) ] -> [ quote f [] ]
-| [ "Quote" ident(f) "[" ne_ident_list(lc) "]"] -> [ quote f lc ]
+TACTIC EXTEND quote
+ [ "quote" ident(f) ] -> [ quote f [] ]
+| [ "quote" ident(f) "[" ne_ident_list(lc) "]"] -> [ quote f lc ]
END