|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r49709 - trunk/tools/build/v2/util
From: ghost_at_[hidden]
Date: 2008-11-13 01:44:22
Author: vladimir_prus
Date: 2008-11-13 01:44:21 EST (Thu, 13 Nov 2008)
New Revision: 49709
URL: http://svn.boost.org/trac/boost/changeset/49709
Log:
Quote strings containing semicolons
Text files modified:
trunk/tools/build/v2/util/print.jam | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Modified: trunk/tools/build/v2/util/print.jam
==============================================================================
--- trunk/tools/build/v2/util/print.jam (original)
+++ trunk/tools/build/v2/util/print.jam 2008-11-13 01:44:21 EST (Thu, 13 Nov 2008)
@@ -285,11 +285,11 @@
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> ;
}
}
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk