From: Brion Vibber Date: Mon, 30 Jan 2006 01:04:10 +0000 (+0000) Subject: fix whitespace consistency X-Git-Tag: 1.6.0~399 X-Git-Url: http://git.heureux-cyclage.org/?a=commitdiff_plain;h=d2d3f0c23739b16d4941dd3ccf5463a5a45aef5f;p=lhc%2Fweb%2Fwiklou.git fix whitespace consistency --- diff --git a/math/texutil.ml b/math/texutil.ml index 1df7533eaa..e9dc71e9d6 100644 --- a/math/texutil.ml +++ b/math/texutil.ml @@ -51,8 +51,8 @@ let get_encoding = function let get_preface () = "\\nonstopmode\n\\documentclass[12pt]{article}\n" ^ (if !modules_nonascii then get_encoding !modules_encoding else "") ^ (if !modules_ams then "\\usepackage{amsmath}\n\\usepackage{amsfonts}\n\\usepackage{amssymb}\n" else "") ^ - (if !modules_color then "\\usepackage[dvips]{color}\n" else "") ^ - "\\pagestyle{empty}\n\\begin{document}\n$$\n" + (if !modules_color then "\\usepackage[dvips]{color}\n" else "") ^ + "\\pagestyle{empty}\n\\begin{document}\n$$\n" let get_footer () = "\n$$\n\\end{document}\n" let set_encoding = function @@ -477,5 +477,5 @@ let find = function | "\\mbox" -> raise (Failure "malformatted \\mbox") | "\\vbox" -> raise (Failure "malformatted \\vbox") | "\\hbox" -> raise (Failure "malformatted \\hbox") - | "\\color" -> (tex_use_color (); LITERAL (TEX_ONLY "\\color")) + | "\\color" -> (tex_use_color (); LITERAL (TEX_ONLY "\\color")) | s -> raise (Illegal_tex_function s)