Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Unified Diff: third_party/re2/doc/syntax.txt

Issue 12033058: Updated to most recent version RE2 and remove upstreamed patches. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/re2/doc/mksyntaxgo ('k') | third_party/re2/patches/fix-implicit-conversion.patch » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/re2/doc/syntax.txt
diff --git a/third_party/re2/doc/syntax.txt b/third_party/re2/doc/syntax.txt
index 740e5ce34684a80ec0190ab31df852dfc83aa06a..f940750980a68e4d6f8f99affec2274dae86ed27 100644
--- a/third_party/re2/doc/syntax.txt
+++ b/third_party/re2/doc/syntax.txt
@@ -2,7 +2,7 @@ RE2 regular expression syntax reference
-------------------------­-------­-----
Single characters:
-. any character, including newline (s=true)
+. any character, possibly including newline (s=true)
[xyz] character class
[^xyz] negated character class
\d Perl character class
@@ -60,7 +60,7 @@ re@> possessive match of «re» NOT SUPPORTED vim
Flags:
i case-insensitive (default false)
-m multi-line mode: ^ and $ match begin/end line in addition to begin/end text (default false)
+m multi-line mode: «^» and «$» match begin/end line in addition to begin/end text (default false)
s let «.» match «\n» (default false)
U ungreedy: swap meaning of «x*» and «x*?», «x+» and «x+?», etc (default false)
Flag syntax is «xyz» (set) or «-xyz» (clear) or «xy-z» (set «xy», clear «z»).
« no previous file with comments | « third_party/re2/doc/mksyntaxgo ('k') | third_party/re2/patches/fix-implicit-conversion.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698