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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=da1b1a735765071185281ce86a379ea0d078cb17;p=vim updated for version 7.0173 --- diff --git a/src/normal.c b/src/normal.c index 2526de379..80f086459 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 98fac22ec..119d0395f 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 : */