Hi Bram,
Please see the attached patch for a simple typo in doc/syntax.txt
(`next' should be `text'). Also I'm wondering if patches are supposed to
change the "Last change:" date in the header of the help file?
- Peter
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
changeset: 3168:2db5dd336afa
tag: tip
user: Peter Odding <[email protected]>
date: Fri Nov 18 11:57:05 2011 +0100
files: runtime/doc/syntax.txt
description:
Fix s/next/text/ typo in doc/syntax.txt
diff --git a/runtime/doc/syntax.txt b/runtime/doc/syntax.txt
--- a/runtime/doc/syntax.txt
+++ b/runtime/doc/syntax.txt
@@ -1,4 +1,4 @@
-*syntax.txt* For Vim version 7.3. Last change: 2011 Sep 30
+*syntax.txt* For Vim version 7.3. Last change: 2011 Nov 18
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -3919,7 +3919,7 @@ First syncing method: *:syn-sync-first
The file will be parsed from the start. This makes syntax highlighting
accurate, but can be slow for long files. Vim caches previously parsed text,
so that it's only slow when parsing the text for the first time. However,
-when making changes some part of the next needs to be parsed again (worst
+when making changes some part of the text needs to be parsed again (worst
case: to the end of the file).
Using "fromstart" is equivalent to using "minlines" with a very large number.