]> git.saurik.com Git - wxWidgets.git/commitdiff
Fixed some "\_"s in verbatim blocks so they are no longer quoted with backslashes
authorGeorge Tasker <gtasker@allenbrook.com>
Wed, 18 Jul 2001 22:00:03 +0000 (22:00 +0000)
committerGeorge Tasker <gtasker@allenbrook.com>
Wed, 18 Jul 2001 22:00:03 +0000 (22:00 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11089 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/regex.tex

index 32fa868d6a6ed91b40c12983b2ab185e89c6a6cb..6dbf402bd89b2313974fc6a026b814eb26bcbb62 100644 (file)
@@ -55,24 +55,24 @@ Flags for regex compilation to be used with \helpref{Compile()}{wxregexcompile}:
 enum
 {
     // use extended regex syntax (default)
-    wxRE\_EXTENDED = 0,
+    wxRE_EXTENDED = 0,
 
     // use basic RE syntax
-    wxRE\_BASIC    = 2,
+    wxRE_BASIC    = 2,
 
     // ignore case in match
-    wxRE\_ICASE    = 4,
+    wxRE_ICASE    = 4,
 
     // only check match, don't set back references
-    wxRE\_NOSUB    = 8,
+    wxRE_NOSUB    = 8,
 
     // if not set, treat '\n' as an ordinary character, otherwise it is
     // special: it is not matched by '.' and '^' and '$' always match
-    // after/before it regardless of the setting of wxRE\_NOT[BE]OL
-    wxRE\_NEWLINE  = 16,
+    // after/before it regardless of the setting of wxRE_NOT[BE]OL
+    wxRE_NEWLINE  = 16,
 
     // default flags
-    wxRE\_DEFAULT  = wxRE\_EXTENDED
+    wxRE_DEFAULT  = wxRE_EXTENDED
 }
 \end{verbatim}
 
@@ -84,10 +84,10 @@ to prevent erroneous matches for {\tt '\^'} and {\tt '\$'}
 enum
 {
     // '^' doesn't match at the start of line
-    wxRE\_NOTBOL = 32,
+    wxRE_NOTBOL = 32,
 
     // '$' doesn't match at the end of line
-    wxRE\_NOTEOL = 64
+    wxRE_NOTEOL = 64
 }
 \end{verbatim}