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:
@@ -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> ;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user