• R/O
  • SSH

vim: Commit

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

Revisionf3669fbc9a31512a0b81fe7f647b935243a76520 (tree)
Zeit2006-09-16 03:18:09
Autorvimboss
Commitervimboss

Log Message

updated for version 7.0-109

Ändern Zusammenfassung

Diff

diff -r b00d5f429a4b -r f3669fbc9a31 src/misc1.c
--- a/src/misc1.c Thu Sep 14 19:36:57 2006 +0000
+++ b/src/misc1.c Fri Sep 15 18:18:09 2006 +0000
@@ -8074,9 +8074,20 @@
80748074 }
80758075 if (*that == '"' && *(that + 1) != NUL)
80768076 {
8077- that++;
8078- while (*that && (*that != '"' || *(that - 1) == '\\'))
8079- ++that;
8077+ while (*++that && *that != '"')
8078+ {
8079+ /* skipping escaped characters in the string */
8080+ if (*that == '\\')
8081+ {
8082+ if (*++that == NUL)
8083+ break;
8084+ if (that[1] == NUL)
8085+ {
8086+ ++that;
8087+ break;
8088+ }
8089+ }
8090+ }
80808091 }
80818092 if (*that == '(' || *that == '[')
80828093 ++parencount;
diff -r b00d5f429a4b -r f3669fbc9a31 src/version.c
--- a/src/version.c Thu Sep 14 19:36:57 2006 +0000
+++ b/src/version.c Fri Sep 15 18:18:09 2006 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 109,
671+/**/
670672 108,
671673 /**/
672674 107,
Show on old repository browser