diff options
| author | herbelin | 2010-03-30 15:09:10 +0000 |
|---|---|---|
| committer | herbelin | 2010-03-30 15:09:10 +0000 |
| commit | c0e397fca7fd2f150c68ab043fd8fdd15db5bcdf (patch) | |
| tree | daf05944aefa6640ece4eefe04283aa93320ea96 /tools/coqdoc/cpretty.mll | |
| parent | f986fba6cfdbf923884da5fba4443964b0e725d5 (diff) | |
Fixed small bugs introduced in commit 12890 (bug #2286, that comes
from a incorrect computation of logical names + bug in rendering of
name-based notations, aka abbreviations or syntactic definitions).
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@12893 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tools/coqdoc/cpretty.mll')
| -rw-r--r-- | tools/coqdoc/cpretty.mll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/coqdoc/cpretty.mll b/tools/coqdoc/cpretty.mll index 97d581048a..1834a7d336 100644 --- a/tools/coqdoc/cpretty.mll +++ b/tools/coqdoc/cpretty.mll @@ -1079,7 +1079,7 @@ and start_notation_string = parse notation_string lexbuf; body lexbuf } | _ (* an abbreviation *) - { body lexbuf } + { backtrack lexbuf; body lexbuf } and notation_string = parse | "\"\"" |
