aboutsummaryrefslogtreecommitdiff
path: root/parsing
diff options
context:
space:
mode:
authormsozeau2009-11-06 03:01:57 +0000
committermsozeau2009-11-06 03:01:57 +0000
commit625a129d5e9b200399a147111f191abe84282aa4 (patch)
treea32a09a581bf6ecf38f3d047e50624d38242dba5 /parsing
parente3c40a83409cfe4838e8ba20944360b94ab3e83e (diff)
Misc fixes.
- Correct backtracking function of coqdoc to handle the _p fields of lexers - Try a better typesetting of [[ ]] inline code considering it as blocks and not purely inline code like [ ] escapings. - Rework latex macros for better factorization and support external references in pdf output. - Better criterion for generalization of variables in dependent elimination tactic and better error message in [specialize_hypothesis]. - In autounfold, don't put the core unfolds by default. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@12474 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'parsing')
-rw-r--r--parsing/g_vernac.ml42
1 files changed, 1 insertions, 1 deletions
diff --git a/parsing/g_vernac.ml4 b/parsing/g_vernac.ml4
index 2fd822636e..c21185c511 100644
--- a/parsing/g_vernac.ml4
+++ b/parsing/g_vernac.ml4
@@ -552,7 +552,7 @@ GEXTEND Gram
| IDENT "Generalizable"; ["Variable" | IDENT "Variables"];
gen = [ IDENT "none" -> None | IDENT "all" -> Some [] |
idl = LIST1 identref -> Some idl ] ->
- VernacGeneralizable (use_section_locality (), gen) ] ]
+ VernacGeneralizable (use_non_locality (), gen) ] ]
;
implicit_name:
[ [ "!"; id = ident -> (id, false, true)