mirror of
https://github.com/neovim/neovim.git
synced 2025-10-05 09:26:30 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -2063,7 +2063,7 @@ static void list_features(void)
|
||||
/// List string items nicely aligned in columns.
|
||||
/// When "size" is < 0 then the last entry is marked with NULL.
|
||||
/// The entry with index "current" is inclosed in [].
|
||||
void list_in_columns(char_u **items, int size, int current)
|
||||
void list_in_columns(char **items, int size, int current)
|
||||
{
|
||||
int item_count = 0;
|
||||
int width = 0;
|
||||
|
Reference in New Issue
Block a user