aboutsummaryrefslogtreecommitdiff
path: root/parsing
diff options
context:
space:
mode:
authorppedrot2012-06-04 17:23:54 +0000
committerppedrot2012-06-04 17:23:54 +0000
commit9238c52f9ec9511aba4d810f08f46ee2ffad05c4 (patch)
treef376874630775edd90fb4a87e112724aa67836cc /parsing
parent0f500f2e7a3164df44a2b20e67550cb0072d8948 (diff)
Fixing previous commit (something strange happened...)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15423 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'parsing')
-rw-r--r--parsing/lexer.ml42
1 files changed, 1 insertions, 1 deletions
diff --git a/parsing/lexer.ml4 b/parsing/lexer.ml4
index 1897210210..dba552e77c 100644
--- a/parsing/lexer.ml4
+++ b/parsing/lexer.ml4
@@ -282,7 +282,7 @@ let rec string in_comments bp len = parser
(parser
| [< '')'; s >] ->
if in_comments = Some 0 then
- msg_warning (strbr "Not interpreting \"*)\" as the end of current non-terminated comment because it occurs in a non-terminated string of the comment.");
+ msg_warning (strbrk "Not interpreting \"*)\" as the end of current non-terminated comment because it occurs in a non-terminated string of the comment.");
let in_comments = Option.map pred in_comments in
string in_comments bp (store (store len '*') ')') s
| [< >] ->