This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  58d2a0513d75a02a8013cf9c0d9da518358ff8e1 (commit)
       via  042be0b38686e9ba256358c30177b4239c1d5022 (commit)
      from  84a8d51fc9dad5e504ccada5bd1160aba24bce59 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=58d2a0513d75a02a8013cf9c0d9da518358ff8e1
commit 58d2a0513d75a02a8013cf9c0d9da518358ff8e1
Merge: 84a8d51 042be0b
Author:     Clinton Stimpson <clin...@elemtech.com>
AuthorDate: Tue Jun 17 11:26:30 2014 -0400
Commit:     CMake Topic Stage <kwro...@kitware.com>
CommitDate: Tue Jun 17 11:26:30 2014 -0400

    Merge topic 'encoding-parse-commandline' into next
    
    042be0b3 Encoding: Fix compile warnings from commit 38dbe69.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=042be0b38686e9ba256358c30177b4239c1d5022
commit 042be0b38686e9ba256358c30177b4239c1d5022
Author:     Clinton Stimpson <clin...@elemtech.com>
AuthorDate: Tue Jun 17 09:25:48 2014 -0600
Commit:     Clinton Stimpson <clin...@elemtech.com>
CommitDate: Tue Jun 17 09:26:00 2014 -0600

    Encoding: Fix compile warnings from commit 38dbe69.

diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index 0fe33d1..e29e698 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -439,7 +439,7 @@ void cmSystemTools::ParseWindowsCommandLine(const char* 
command,
       {
       arg.append(backslashes, '\\');
       backslashes = 0;
-      if(*c >= -1 && *c <= 255 && isspace(*c))
+      if(((*c & 0x80) == 0 ) && isspace(*c))
         {
         if(in_quotes)
           {

-----------------------------------------------------------------------

Summary of changes:
 Source/cmSystemTools.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
CMake
_______________________________________________
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/mailman/listinfo/cmake-commits

Reply via email to