From 80fe0ce9e5885e5b1f317b6897eaabfaa249cd0b Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Thu, 13 Nov 2008 06:44:21 +0000 Subject: [PATCH] Quote strings containing semicolons [SVN r49709] --- src/util/print.jam | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/util/print.jam b/src/util/print.jam index 8ee4b4f8e..464381b5c 100644 --- a/src/util/print.jam +++ b/src/util/print.jam @@ -285,11 +285,11 @@ rule lines ( indent = "" ; for local c in $(indent-chars) { - if $(c) = " " { c =   ; } - else if $(c) = " " { c =      ; } + if $(c) = " " { c = " " ; } + else if $(c) = " " { c = "    " ; } indent = $(indent)$(c) ; } - local html-text = [ escape-html $(text) :   ] ; + local html-text = [ escape-html $(text) : " " ] ; text $(html-text[1])
$(indent)$(html-text[2-])
; } }