]> granicus.if.org Git - vim/commitdiff
updated for version 7.1a
authorBram Moolenaar <Bram@vim.org>
Sun, 6 May 2007 13:49:21 +0000 (13:49 +0000)
committerBram Moolenaar <Bram@vim.org>
Sun, 6 May 2007 13:49:21 +0000 (13:49 +0000)
src/term.c

index 1872852612129f107de915d2d54a02c7c57c79b2..558928b6189b6a5f106f1f34d9b69d878a5fcedf 100644 (file)
@@ -2981,7 +2981,8 @@ get_bytes_from_buf(buf, bytes, num_bytes)
            ++len;      /* skip KE_FILLER */
            /* else it should be KS_SPECIAL, and c already equals K_SPECIAL */
        }
-       else if (c == CSI && buf[len] == KS_EXTRA && buf[len + 1] == (int)KE_CSI)
+       else if (c == CSI && buf[len] == KS_EXTRA
+                                              && buf[len + 1] == (int)KE_CSI)
            /* CSI is stored as CSI KS_SPECIAL KE_CSI to avoid confusion with
             * the start of a special key, see add_to_input_buf_csi(). */
            len += 2;