diff options
Diffstat (limited to 'src/nvim/search.h')
-rw-r--r-- | src/nvim/search.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/search.h b/src/nvim/search.h index cd8431c916..092098d5fd 100644 --- a/src/nvim/search.h +++ b/src/nvim/search.h @@ -73,7 +73,7 @@ typedef struct soffset { /// Structure containing last search pattern and its attributes. typedef struct spat { - char_u *pat; ///< The pattern (in allocated memory) or NULL. + char *pat; ///< The pattern (in allocated memory) or NULL. bool magic; ///< Magicness of the pattern. bool no_scs; ///< No smartcase for this pattern. Timestamp timestamp; ///< Time of the last change. |