From: Bram Moolenaar Date: Sun, 18 Dec 2005 21:59:16 +0000 (+0000) Subject: updated for version 7.0173 X-Git-Tag: v7.0173~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=da1b1a735765071185281ce86a379ea0d078cb17;p=thirdparty%2Fvim.git updated for version 7.0173 --- diff --git a/src/normal.c b/src/normal.c index 2526de3798..80f086459a 100644 --- a/src/normal.c +++ b/src/normal.c @@ -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); diff --git a/src/proto/popupmenu.pro b/src/proto/popupmenu.pro index 98fac22ec6..119d0395f7 100644 --- a/src/proto/popupmenu.pro +++ b/src/proto/popupmenu.pro @@ -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 : */