You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by fa...@apache.org on 2008/05/15 11:47:57 UTC

svn commit: r656577 - /stdcxx/branches/4.2.x/etc/config/windows/run_locale_utils.wsf

Author: faridz
Date: Thu May 15 02:47:57 2008
New Revision: 656577

URL: http://svn.apache.org/viewvc?rev=656577&view=rev
Log:
2008-05-15  Farid Zaripov  <fa...@epam.com>

	* etc/config/windows/run_locale_utils.wsf (check_locale_m): Skip empty lines.

Modified:
    stdcxx/branches/4.2.x/etc/config/windows/run_locale_utils.wsf

Modified: stdcxx/branches/4.2.x/etc/config/windows/run_locale_utils.wsf
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.2.x/etc/config/windows/run_locale_utils.wsf?rev=656577&r1=656576&r2=656577&view=diff
==============================================================================
--- stdcxx/branches/4.2.x/etc/config/windows/run_locale_utils.wsf (original)
+++ stdcxx/branches/4.2.x/etc/config/windows/run_locale_utils.wsf Thu May 15 02:47:57 2008
@@ -243,6 +243,9 @@
 
         var line = aout[i].replace("\r", "").replace("\n", "");
         
+        if (0 == line.length)
+            continue;
+
         if (0 > line.search(new RegExp(".cm")))
         {
             DebugOutLine(" incorrect.");