2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-14 12:42:11 +00:00

Quote strings containing semicolons

[SVN r49709]
This commit is contained in:
Vladimir Prus
2008-11-13 06:44:21 +00:00
parent 92ab8117ff
commit 80fe0ce9e5

View File

@@ -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])<br> $(indent)$(html-text[2-])<br> ;
}
}