annotate src/proto/popupmnu.pro @ 6710:43a07fa78155
v7.4.679
updated for version 7.4.679
Problem: Color values greater than 255 cause problems on MS-Windows.
Solution: Truncate to 255 colors. (Yasuhiro Matsumoto)
author |
Bram Moolenaar <bram@vim.org> |
date |
Tue, 24 Mar 2015 17:12:19 +0100 |
parents |
e63691e7c504 |
children |
21b0a39d13ed |
rev |
line source |
799
|
1 /* popupmnu.c */
|
1121
|
2 void pum_display __ARGS((pumitem_T *array, int size, int selected));
|
|
3 void pum_redraw __ARGS((void));
|
|
4 void pum_undisplay __ARGS((void));
|
|
5 void pum_clear __ARGS((void));
|
|
6 int pum_visible __ARGS((void));
|
|
7 int pum_get_height __ARGS((void));
|
799
|
8 /* vim: set ft=c : */
|