From 28200e7f9733d301d797adada9dc21cdf2eca91e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Sun, 22 Jul 2012 16:10:36 +0000 Subject: [PATCH] Boost Jam cleanup - minor comment corrections. [SVN r79675] --- src/engine/headers.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/engine/headers.c b/src/engine/headers.c index fec58a51c..f1e1b499d 100644 --- a/src/engine/headers.c +++ b/src/engine/headers.c @@ -132,7 +132,7 @@ LIST * headers1( LIST * l, OBJECT * file, int rec, regexp * re[] ) #endif /* The following regexp is used to detect cases where a file is included - * through a line line "#include MACRO". + * through a line like "#include MACRO". */ if ( re_macros == 0 ) { @@ -156,7 +156,7 @@ LIST * headers1( LIST * l, OBJECT * file, int rec, regexp * re[] ) l = list_push_back( l, object_new( re[ i ]->startp[ 1 ] ) ); } - /* special treatment for #include MACRO */ + /* Special treatment for #include MACRO. */ if ( regexec( re_macros, buf ) && re_macros->startp[ 1 ] ) { OBJECT * header_filename;