summaryrefslogtreecommitdiffstats
path: root/runtime/doc
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2015-12-31 21:19:49 +0100
committerBram Moolenaar <Bram@vim.org>2015-12-31 21:19:49 +0100
commit9b05a0d0f94d8c4c1ddd51e7f31b73f7556bdbdc (patch)
tree0c1c6323e591bb57a426522162164e1222c6dd48 /runtime/doc
parent1000565c3a2439c9a7c9759284814dbf3b8bc20d (diff)
patch 7.4.1013v7.4.1013
Problem: The local value of 'errorformat' is not used for ":lexpr" and ":cexpr". Solution: Use the local value if it exists. (Christian Brabandt) Adjust the help for this.
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/quickfix.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/doc/quickfix.txt b/runtime/doc/quickfix.txt
index 9858d4eb76..674470e597 100644
--- a/runtime/doc/quickfix.txt
+++ b/runtime/doc/quickfix.txt
@@ -1,4 +1,4 @@
-*quickfix.txt* For Vim version 7.4. Last change: 2015 Sep 08
+*quickfix.txt* For Vim version 7.4. Last change: 2015 Dec 31
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -217,9 +217,9 @@ command with 'l'.
:cex[pr][!] {expr} Create a quickfix list using the result of {expr} and
jump to the first error.
If {expr} is a String, then each new-line terminated
- line in the String is processed using the global value
- of 'errorformat' and the result is added to the
- quickfix list.
+ line in the String is processed using the value
+ of 'errorformat' (buffer-local value if it was set)
+ and the result is added to the quickfix list.
If {expr} is a List, then each String item in the list
is processed and added to the quickfix list. Non
String items in the List are ignored.