summaryrefslogtreecommitdiff
path: root/ide/find_phrase.mll
diff options
context:
space:
mode:
Diffstat (limited to 'ide/find_phrase.mll')
-rw-r--r--ide/find_phrase.mll12
1 files changed, 7 insertions, 5 deletions
diff --git a/ide/find_phrase.mll b/ide/find_phrase.mll
index 7b65bd94..1621e313 100644
--- a/ide/find_phrase.mll
+++ b/ide/find_phrase.mll
@@ -6,7 +6,7 @@
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
-(* $Id: find_phrase.mll,v 1.8.2.2 2004/10/15 14:50:13 coq Exp $ *)
+(* $Id: find_phrase.mll 6218 2004-10-15 14:27:04Z coq $ *)
{
exception Lex_error of string
@@ -36,10 +36,12 @@ rule next_phrase = parse
length := !length + 1;
Buffer.add_string buff (Lexing.lexeme lexbuf);
Buffer.contents buff}
- | phrase_sep phrase_sep {
- length := !length + 2;
- Buffer.add_string buff (Lexing.lexeme lexbuf);
- next_phrase lexbuf}
+ | phrase_sep phrase_sep
+ {
+ length := !length + 2;
+ Buffer.add_string buff (Lexing.lexeme lexbuf);
+ next_phrase lexbuf
+ }
| _
{
let c = Lexing.lexeme_char lexbuf 0 in