]> granicus.if.org Git - vim/commitdiff
updated for version 7.0173
authorBram Moolenaar <Bram@vim.org>
Sun, 18 Dec 2005 21:59:16 +0000 (21:59 +0000)
committerBram Moolenaar <Bram@vim.org>
Sun, 18 Dec 2005 21:59:16 +0000 (21:59 +0000)
src/normal.c
src/proto/popupmenu.pro

index 2526de37988281b66e6e381ae9a433e92494e796..80f086459a12bef4a37a084a7e1dfa12baa4f509 100644 (file)
@@ -6514,7 +6514,7 @@ nv_replace(cap)
 #ifdef FEAT_MBYTE
        (void)del_chars(cap->count1, FALSE);    /* delete the characters */
 #else
-       (void)del_bytes(cap->count1, FALSE);    /* delete the characters */
+       (void)del_bytes(cap->count1, FALSE, FALSE); /* delete the characters */
 #endif
        stuffcharReadbuff('\r');
        stuffcharReadbuff(ESC);
index 98fac22ec63a802d599abbbd437ce12535d2d0ca..119d0395f7cd4dd94b611e5fd5dd04fa4866f0cf 100644 (file)
@@ -5,4 +5,5 @@ void pum_set_selected __ARGS((int n));
 void pum_undisplay __ARGS((void));
 void pum_clear __ARGS((void));
 int pum_visible __ARGS((void));
+int pum_get_height __ARGS((void));
 /* vim: set ft=c : */