aboutsummaryrefslogtreecommitdiffhomepage
path: root/ide/config_lexer.mll
diff options
context:
space:
mode:
Diffstat (limited to 'ide/config_lexer.mll')
-rw-r--r--ide/config_lexer.mll4
1 files changed, 2 insertions, 2 deletions
diff --git a/ide/config_lexer.mll b/ide/config_lexer.mll
index 933baa5dc..57699c686 100644
--- a/ide/config_lexer.mll
+++ b/ide/config_lexer.mll
@@ -25,7 +25,7 @@ rule prefs m = parse
|ignore* (ident as id) ignore* '=' { let conf = str_list [] lexbuf in
prefs (Stringmap.add id conf m) lexbuf }
| _ { let c = lexeme_start lexbuf in
- eprintf ".coqiderc: invalid character (%d)\n@." c;
+ eprintf "coqiderc: invalid character (%d)\n@." c;
prefs m lexbuf }
| eof { m }
@@ -41,7 +41,7 @@ and string = parse
| '"' { Buffer.add_char string_buffer '"' }
| '\\' '"' | _
{ Buffer.add_string string_buffer (lexeme lexbuf); string lexbuf }
- | eof { eprintf ".coqiderc: unterminated string\n@." }
+ | eof { eprintf "coqiderc: unterminated string\n@." }
{