From 4dd3ab215597bdac01ce5ffcfba939e16d5fbf7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Wed, 27 Jun 2012 19:55:44 +0000 Subject: [PATCH] Boost Build code cleanup - minor stylistic comment change. [SVN r79146] --- v2/tools/rc.jam | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v2/tools/rc.jam b/v2/tools/rc.jam index a8288143b..e1488ee60 100644 --- a/v2/tools/rc.jam +++ b/v2/tools/rc.jam @@ -114,11 +114,11 @@ class res-scanner : scanner local quoted = [ regex.transform $(matches) : "#include[ ]*\"([^\"]+)\"" ] ; local res = [ regex.transform $(matches) : "[^ ]+[ ]+(BITMAP|CURSOR|FONT|ICON|MESSAGETABLE|RT_MANIFEST)[ ]+(([^ \"]+)|\"([^\"]+)\")" : 3 4 ] ; - # Icons and other includes may referenced as + # Icons and other includes may be referenced as # # IDR_MAINFRAME ICON "res\\icon.ico" # - # so we have to replace double backslashes to single ones. + # so we have to replace double backslashes with single ones. res = [ regex.replace-list $(res) : "\\\\\\\\" : "/" ] ; # CONSIDER: the new scoping rules seem to defeat "on target" variables.