$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r49270 - in branches/release: . libs/mpl/preprocessed
From: agurtovoy_at_[hidden]
Date: 2008-10-11 02:35:10
Author: agurtovoy
Date: 2008-10-11 02:35:10 EDT (Sat, 11 Oct 2008)
New Revision: 49270
URL: http://svn.boost.org/trac/boost/changeset/49270
Log:
Merged revisions 49244 via svnmerge from 
https://svn.boost.org/svn/boost/trunk
........
  r49244 | agurtovoy | 2008-10-10 05:11:23 -0500 (Fri, 10 Oct 2008) | 1 line
  
  Fix preprocessed headers generation
........
Properties modified: 
   branches/release/   (props changed)
Text files modified: 
   branches/release/libs/mpl/preprocessed/pp.py |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
Modified: branches/release/libs/mpl/preprocessed/pp.py
==============================================================================
--- branches/release/libs/mpl/preprocessed/pp.py	(original)
+++ branches/release/libs/mpl/preprocessed/pp.py	2008-10-11 02:35:10 EDT (Sat, 11 Oct 2008)
@@ -146,7 +146,7 @@
         self.copyright = None
         
         self.re_header_name_comment = re.compile( 
-              r'^\s*//\s+\$[S]ource: /cvsroot/boost/boost/(.*?%s\.hpp),v\s*\$$'
+              r'^\s*//\s+\$[I]d:\s+(.*?%s\.hpp)\s+[^$]+[$]$'
                 % os.path.splitext( name )[0]
             )
         
@@ -199,7 +199,7 @@
                 match = self.re_header_name_comment.match( line )
                 self.output.write( \
                     '\n%s\n' \
-                    '// Preprocessed version of "%s" header\n' \
+                    '// *Preprocessed* version of the main "%s" header\n' \
                     '// -- DO NOT modify by hand!\n\n' \
                     % ( self.copyright, match.group(1) )
                     )