diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-12-18 21:59:16 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-12-18 21:59:16 +0000 |
commit | da1b1a735765071185281ce86a379ea0d078cb17 (patch) | |
tree | 4c03766a81d30a6520cb5a41f8265519aa069d88 | |
parent | 3b18181f280a9c4e20d1db32d4877646d63305b3 (diff) | |
download | vim-da1b1a735765071185281ce86a379ea0d078cb17.zip |
updated for version 7.0173
-rw-r--r-- | src/normal.c | 2 | ||||
-rw-r--r-- | src/proto/popupmenu.pro | 1 |
2 files changed, 2 insertions, 1 deletions
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 : */ |