[sword-svn] r3889 - trunk/src/mgr

scribe at crosswire.org scribe at crosswire.org
Thu May 25 02:33:52 EDT 2023


Author: scribe
Date: 2023-05-25 02:33:52 -0400 (Thu, 25 May 2023)
New Revision: 3889

Modified:
   trunk/src/mgr/filemgr.cpp
Log:
commented out condition which causes regression with FileMgr::getLine


Modified: trunk/src/mgr/filemgr.cpp
===================================================================
--- trunk/src/mgr/filemgr.cpp	2023-04-17 20:35:06 UTC (rev 3888)
+++ trunk/src/mgr/filemgr.cpp	2023-05-25 06:33:52 UTC (rev 3889)
@@ -548,7 +548,7 @@
 		// clean up any preceding white space if we're at the beginning of line
 		if (!line.length()) {
 			for (;start < len; start++) {
-				if (chunk[start] != 10 && chunk[start] != 13 && (!strip || (chunk[start] != ' ' && chunk[start] != '\t'))) {
+				if (/*chunk[start] != 10 && */chunk[start] != 13 && (!strip || (chunk[start] != ' ' && chunk[start] != '\t'))) {
 					break;
 				}
 			}



More information about the sword-cvs mailing list