changeset 608:def07088c90e

updated for version 7.0173
author vimboss
date Sun, 18 Dec 2005 21:59:16 +0000
parents 1b7cac059bab
children ba54311bc43e
files src/normal.c src/proto/popupmenu.pro
diffstat 2 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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);
--- 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 : */