]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
updated for version 7.3.901 v7.3.901
authorBram Moolenaar <Bram@vim.org>
Mon, 15 Apr 2013 13:47:12 +0000 (15:47 +0200)
committerBram Moolenaar <Bram@vim.org>
Mon, 15 Apr 2013 13:47:12 +0000 (15:47 +0200)
Problem:    Outdated comment, ugly condition.
Solution:   Update a few comments, break line.

src/getchar.c
src/misc1.c
src/undo.c
src/version.c

index d3d50e92541ba87ebf787a32bb2d0df5f93a91ac..ba034bf2e8eefe518081a0b353314cde74a4af9e 100644 (file)
@@ -444,7 +444,7 @@ flush_buffers(flush_typeahead)
        typebuf.tb_off = MAXMAPLEN;
        typebuf.tb_len = 0;
     }
-    else                   /* remove mapped characters only */
+    else                   /* remove mapped characters at the start only */
     {
        typebuf.tb_off += typebuf.tb_maplen;
        typebuf.tb_len -= typebuf.tb_maplen;
index 7c2d3505244de8d6a03101d620c4c905d27a84d4..96d268d49db6d3322f3f51d0a7c09c5ffdf9f440 100644 (file)
@@ -5054,7 +5054,6 @@ vim_fnamencmp(x, y, len)
     int                cx = NUL;
     int                cy = NUL;
 
-    /* TODO: multi-byte characters. */
     while (len > 0)
     {
        cx = PTR2CHAR(px);
index db81ba0cd218fbe9bd4ad823ab3a5461bc6a9f62..ba6ab379f0927d8bceececd92e87c56cf404e1f8 100644 (file)
@@ -216,6 +216,7 @@ u_check(int newhead_may_be_NULL)
 
 /*
  * Save the current line for both the "u" and "U" command.
+ * Careful: may trigger autocommands that reload the buffer.
  * Returns OK or FAIL.
  */
     int
@@ -238,8 +239,9 @@ u_save(top, bot)
     if (undo_off)
        return OK;
 
-    if (top > curbuf->b_ml.ml_line_count ||
-                           top >= bot || bot > curbuf->b_ml.ml_line_count + 1)
+    if (top > curbuf->b_ml.ml_line_count
+           || top >= bot
+           || bot > curbuf->b_ml.ml_line_count + 1)
        return FALSE;   /* rely on caller to do error messages */
 
     if (top + 2 == bot)
index 9884bf9129c631e8bf9d7aa90e60060c5de095ac..f117830b68d2eca0b99f11fdf7732bcf89ef44b7 100644 (file)
@@ -728,6 +728,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    901,
 /**/
     900,
 /**/