[Cmake-commits] CMake branch, next, updated. v2.8.10.2-2583-g21855de

Brad King brad.king at kitware.com
Tue Mar 19 13:16:01 EDT 2013


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  21855dea127201ef72193ba445aee7aff9b7d0e4 (commit)
       via  763a6dcd335e60dfecca6b7f3f823106a3877cf6 (commit)
       via  5dfa6240ebbfcfd20f0be8b550d8c39b13cde78b (commit)
      from  17ddbe2e77905a16e58b16ec7609f820f9e7f366 (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=21855dea127201ef72193ba445aee7aff9b7d0e4
commit 21855dea127201ef72193ba445aee7aff9b7d0e4
Merge: 17ddbe2 763a6dc
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Tue Mar 19 13:15:57 2013 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Mar 19 13:15:57 2013 -0400

    Merge topic 'doc-string-regex' into next
    
    763a6dc string: Fix regex documentation of '^' and '$' (#14028)
    5dfa624 CMake Nightly Date Stamp


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=763a6dcd335e60dfecca6b7f3f823106a3877cf6
commit 763a6dcd335e60dfecca6b7f3f823106a3877cf6
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Tue Mar 19 13:13:32 2013 -0400
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Tue Mar 19 13:14:22 2013 -0400

    string: Fix regex documentation of '^' and '$' (#14028)
    
    They match at the beginning and end of the input, not by line.
    
    Reported-by: Martin Perzl <martin.perzl at web.de>

diff --git a/Source/cmStringCommand.h b/Source/cmStringCommand.h
index 30dbaa5..802e0b8 100644
--- a/Source/cmStringCommand.h
+++ b/Source/cmStringCommand.h
@@ -129,8 +129,8 @@ public:
       "will search for the position of the last occurrence of the "
       "specified substring.\n"
       "The following characters have special meaning in regular expressions:\n"
-      "   ^         Matches at beginning of a line\n"
-      "   $         Matches at end of a line\n"
+      "   ^         Matches at beginning of input\n"
+      "   $         Matches at end of input\n"
       "   .         Matches any single character\n"
       "   [ ]       Matches any character(s) inside the brackets\n"
       "   [^ ]      Matches any character(s) not inside the brackets\n"

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

Summary of changes:
 Source/CMakeVersion.cmake |    2 +-
 Source/cmStringCommand.h  |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list