From 291b3d05437456bbb9a692b4982de353dc2422ee Mon Sep 17 00:00:00 2001 From: Alexander Neundorf Date: Thu, 30 Aug 2007 10:26:01 -0400 Subject: [PATCH] STYLE: add the | to the docs Alex --- Source/cmStringCommand.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/cmStringCommand.h b/Source/cmStringCommand.h index 2d0881c3a..78ddcea73 100644 --- a/Source/cmStringCommand.h +++ b/Source/cmStringCommand.h @@ -130,6 +130,7 @@ public: " * Matches preceding pattern zero or more times\n" " + Matches preceding pattern one or more times\n" " ? Matches preceding pattern zero or once only\n" + " | Matches a pattern on either side of the |\n" " () Saves a matched subexpression, which can be referenced in " "the REGEX REPLACE operation. Additionally it is saved in the special " "CMake variables CMAKE_MATCH_(0..9).";