diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-12-14 21:17:39 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-12-14 21:17:39 +0100 |
commit | f1568eca24d30d4f308e987657c53cd48d97d8fa (patch) | |
tree | 900c802d8096eca43c957c0b3c16cc36cec32e7b /runtime/doc/pattern.txt | |
parent | f788a0610309ed9787b4e48216c7d7d4446744c5 (diff) | |
download | vim-f1568eca24d30d4f308e987657c53cd48d97d8fa.zip |
Update runtime files.
Diffstat (limited to 'runtime/doc/pattern.txt')
-rw-r--r-- | runtime/doc/pattern.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/pattern.txt b/runtime/doc/pattern.txt index 9a9d0568b..4283320c4 100644 --- a/runtime/doc/pattern.txt +++ b/runtime/doc/pattern.txt @@ -1,4 +1,4 @@ -*pattern.txt* For Vim version 7.3. Last change: 2011 Sep 28 +*pattern.txt* For Vim version 7.3. Last change: 2011 Nov 26 VIM REFERENCE MANUAL by Bram Moolenaar @@ -937,7 +937,7 @@ match ASCII characters, as indicated by the range. \l lowercase character: [a-z] */\l* \L non-lowercase character: [^a-z] */\L* \u uppercase character: [A-Z] */\u* -\U non-uppercase character [^A-Z] */\U* +\U non-uppercase character: [^A-Z] */\U* NOTE: Using the atom is faster than the [] form. |