summaryrefslogtreecommitdiff
path: root/runtime/doc/change.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-09-11 15:07:27 +0200
committerBram Moolenaar <Bram@vim.org>2016-09-11 15:07:27 +0200
commit7e1479b86c590a66b63a274c079b7f18907d45a4 (patch)
tree0f13f244eb42df988c75209adfa4bb703794c310 /runtime/doc/change.txt
parent4930a76a0357f76a829eafe4985d04cf3ce0e9e0 (diff)
downloadvim-git-7e1479b86c590a66b63a274c079b7f18907d45a4.tar.gz
Updated runtime files, Japanese translations.
Diffstat (limited to 'runtime/doc/change.txt')
-rw-r--r--runtime/doc/change.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/doc/change.txt b/runtime/doc/change.txt
index 02f3139b3..e2148b3aa 100644
--- a/runtime/doc/change.txt
+++ b/runtime/doc/change.txt
@@ -1,4 +1,4 @@
-*change.txt* For Vim version 7.4. Last change: 2016 Apr 12
+*change.txt* For Vim version 7.4. Last change: 2016 Sep 11
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -872,6 +872,7 @@ The numbering of "\1", "\2" etc. is done based on which "\(" comes first in
the pattern (going left to right). When a parentheses group matches several
times, the last one will be used for "\1", "\2", etc. Example: >
:s/\(\(a[a-d] \)*\)/\2/ modifies "aa ab x" to "ab x"
+The "\2" is for "\(a[a-d] \)". At first it matches "aa ", secondly "ab ".
When using parentheses in combination with '|', like in \([ab]\)\|\([cd]\),
either the first or second pattern in parentheses did not match, so either