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:
@@ -22,7 +22,7 @@ typedef enum {
|
||||
/// History entry definition
|
||||
typedef struct hist_entry {
|
||||
int hisnum; ///< Entry identifier number.
|
||||
char_u *hisstr; ///< Actual entry, separator char after the NUL.
|
||||
char *hisstr; ///< Actual entry, separator char after the NUL.
|
||||
Timestamp timestamp; ///< Time when entry was added.
|
||||
list_T *additional_elements; ///< Additional entries from ShaDa file.
|
||||
} histentry_T;
|
||||
|
Reference in New Issue
Block a user