[Cmake-commits] [cmake-commits] king committed cmMakefile.cxx 1.447 1.448
cmake-commits at cmake.org
cmake-commits at cmake.org
Fri Mar 7 09:09:23 EST 2008
Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv23015
Modified Files:
cmMakefile.cxx
Log Message:
BUG: Do not produce whitespace-only lines when indenting messages in new error/warning format.
Index: cmMakefile.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmMakefile.cxx,v
retrieving revision 1.447
retrieving revision 1.448
diff -C 2 -d -r1.447 -r1.448
*** cmMakefile.cxx 7 Mar 2008 13:40:36 -0000 1.447
--- cmMakefile.cxx 7 Mar 2008 14:09:21 -0000 1.448
***************
*** 290,294 ****
for(const char* c = msg.c_str(); *c; ++c)
{
! if(newline)
{
os << prefix;
--- 290,294 ----
for(const char* c = msg.c_str(); *c; ++c)
{
! if(newline && *c != '\n')
{
os << prefix;
More information about the Cmake-commits
mailing list