diff options
| author | herbelin | 2010-10-11 21:10:07 +0000 |
|---|---|---|
| committer | herbelin | 2010-10-11 21:10:07 +0000 |
| commit | f815aa9b59892a6c7cd2823c3c2a2424e616d4f2 (patch) | |
| tree | a4d6a23f2eeaade4176cda64867784ead68a2d21 /toplevel | |
| parent | 85e52dd8deaaea8dded6be09e7f733c949fd54c5 (diff) | |
Backporting r13521 from branch 8.3 to trunk (fixing bug #2406, looping
on unsupported unicode character) + forbidding unsupported unicode in
Notation declarations too.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@13526 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'toplevel')
| -rw-r--r-- | toplevel/metasyntax.ml | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/toplevel/metasyntax.ml b/toplevel/metasyntax.ml index f0cfd5fd97..3d19811688 100644 --- a/toplevel/metasyntax.ml +++ b/toplevel/metasyntax.ml @@ -326,7 +326,6 @@ let rec raw_analyze_notation_tokens = function | String ".." :: sl -> NonTerminal ldots_var :: raw_analyze_notation_tokens sl | String "_" :: _ -> error "_ must be quoted." | String x :: sl when is_normal_token x -> - Lexer.check_ident x; NonTerminal (Names.id_of_string x) :: raw_analyze_notation_tokens sl | String s :: sl -> Lexer.check_keyword s; |
