From 4d542bc7eafadb16b845cf05d1eb4988eb55ed0f Mon Sep 17 00:00:00 2001 From: Bernhard Schommer Date: Tue, 20 Oct 2015 13:32:18 +0200 Subject: Updated PR by removing whitespaces. Bug 17450. --- doc/coq2html.mll | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'doc') diff --git a/doc/coq2html.mll b/doc/coq2html.mll index 2f1bfdbc..7dd93842 100644 --- a/doc/coq2html.mll +++ b/doc/coq2html.mll @@ -157,7 +157,7 @@ let rec set_enum_depth d = fprintf !oc "\n"; @@ -290,7 +290,7 @@ rule coq_bol = parse | eof { () } | space* as s - { space s; + { space s; coq lexbuf } and skip_newline = parse @@ -337,7 +337,7 @@ and comment = parse | "*)" { if !in_proof then end_comment() } | "(*" - { if !in_proof then start_comment(); + { if !in_proof then start_comment(); comment lexbuf; comment lexbuf } | eof { () } @@ -345,7 +345,7 @@ and comment = parse { if !in_proof then newline(); comment lexbuf } | space* as s - { if !in_proof then space s; + { if !in_proof then space s; comment lexbuf } | eof { () } @@ -422,7 +422,7 @@ let process_file f = if Filename.check_suffix f ".v" then begin let pref_f = Filename.chop_suffix f ".v" in let base_f = Filename.basename pref_f in - current_module := + current_module := "compcert." ^ Str.global_replace (Str.regexp "/") "." pref_f; let ic = open_in f in if !output_name = "-" then -- cgit