aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2015-10-20 13:32:18 +0200
committerBernhard Schommer <bernhardschommer@gmail.com>2015-10-20 13:32:18 +0200
commit4d542bc7eafadb16b845cf05d1eb4988eb55ed0f (patch)
tree1961b41815fc6e392cc0bd2beeb0fb504bc160ce /doc
parent7a6bb90048db7a254e959b1e3c308bac5fe6c418 (diff)
downloadcompcert-kvx-4d542bc7eafadb16b845cf05d1eb4988eb55ed0f.tar.gz
compcert-kvx-4d542bc7eafadb16b845cf05d1eb4988eb55ed0f.zip
Updated PR by removing whitespaces. Bug 17450.
Diffstat (limited to 'doc')
-rw-r--r--doc/coq2html.mll10
1 files changed, 5 insertions, 5 deletions
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 "<ul>\n";
fprintf !oc "<li>\n";
incr enum_depth;
- end
+ end
else if !enum_depth > d then begin
fprintf !oc "</li>\n";
fprintf !oc "</ul>\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