$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r58015 - trunk/tools/build/v2/tools
From: steven_at_[hidden]
Date: 2009-11-28 15:01:31
Author: steven_watanabe
Date: 2009-11-28 15:01:31 EST (Sat, 28 Nov 2009)
New Revision: 58015
URL: http://svn.boost.org/trac/boost/changeset/58015
Log:
Fix quickbook scanner for filenames that start with 't'. (bjam doesn't support '\t')
Text files modified: 
   trunk/tools/build/v2/tools/quickbook.jam |     6 +++---                                  
   1 files changed, 3 insertions(+), 3 deletions(-)
Modified: trunk/tools/build/v2/tools/quickbook.jam
==============================================================================
--- trunk/tools/build/v2/tools/quickbook.jam	(original)
+++ trunk/tools/build/v2/tools/quickbook.jam	2009-11-28 15:01:31 EST (Sat, 28 Nov 2009)
@@ -256,9 +256,9 @@
 {
     rule pattern ( )
     {
-        return "\\[[ \t]*include[ \t]+([^]]+)\\]" 
-        "\\[[ \t]*include:[a-zA-Z0-9_]+[ \t]+([^]]+)\\]" 
-        "\\[[ \t]*import[ \t]+([^]]+)\\]" ;
+        return "\\[[ ]*include[ ]+([^]]+)\\]" 
+        "\\[[ ]*include:[a-zA-Z0-9_]+[ ]+([^]]+)\\]" 
+        "\\[[ ]*import[ ]+([^]]+)\\]" ;
     }
 }