[Cmake-commits] CMake branch, next, updated. v2.8.9-1034-gd61f9cb

Brad King brad.king at kitware.com
Mon Oct 8 09:34:37 EDT 2012


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  d61f9cb088faa4713245f15c4bfefd204d06c351 (commit)
       via  0ed6ff7a2ede945f11d820a4f17536c67a5f0bf2 (commit)
      from  a9450f370b9818a23c1ad2deb0f16692413a2875 (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=d61f9cb088faa4713245f15c4bfefd204d06c351
commit d61f9cb088faa4713245f15c4bfefd204d06c351
Merge: a9450f3 0ed6ff7
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon Oct 8 09:34:35 2012 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Oct 8 09:34:35 2012 -0400

    Merge topic 'doc-regex-range' into next
    
    0ed6ff7 string: Clarify regex documentation of '-' behavior


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=0ed6ff7a2ede945f11d820a4f17536c67a5f0bf2
commit 0ed6ff7a2ede945f11d820a4f17536c67a5f0bf2
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon Oct 8 09:32:15 2012 -0400
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Mon Oct 8 09:32:15 2012 -0400

    string: Clarify regex documentation of '-' behavior
    
    Mention that it is only special inside brackets.  Show an example.
    
    Suggested-by: Alan W. Irwin

diff --git a/Source/cmStringCommand.h b/Source/cmStringCommand.h
index 43a0dbe..728b1bc 100644
--- a/Source/cmStringCommand.h
+++ b/Source/cmStringCommand.h
@@ -133,7 +133,8 @@ public:
       "   .         Matches any single character\n"
       "   [ ]       Matches any character(s) inside the brackets\n"
       "   [^ ]      Matches any character(s) not inside the brackets\n"
-      "    -        Matches any character in range on either side of a dash\n"
+      "    -        Inside brackets, specifies an inclusive range between\n"
+      "             characters on either side e.g. [a-f] is [abcdef]\n"
       "   *         Matches preceding pattern zero or more times\n"
       "   +         Matches preceding pattern one or more times\n"
       "   ?         Matches preceding pattern zero or once only\n"

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

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


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list