diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-07-26 20:41:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-26 20:41:54 +0200 |
commit | c818d8df349fff514eef8a529afe63e8102ca281 (patch) | |
tree | 0acd1856fccebc93e6c98725f211617f58e11c57 /src/nvim/search.c | |
parent | 3e00d4f01cebedb758050e2e3faf065036fcfdc2 (diff) | |
parent | dfd9d861dc218dfe2b5e63eb4d6b77e163b33d59 (diff) | |
download | rneovim-c818d8df349fff514eef8a529afe63e8102ca281.tar.gz rneovim-c818d8df349fff514eef8a529afe63e8102ca281.tar.bz2 rneovim-c818d8df349fff514eef8a529afe63e8102ca281.zip |
Merge pull request #15197 from dundargoc/refactor/a-song-of-true-and-false/global-variables
refactor: replace TRUE/FALSE with true/false
Diffstat (limited to 'src/nvim/search.c')
-rw-r--r-- | src/nvim/search.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/search.c b/src/nvim/search.c index 809eec7ffc..4ec5f4f74d 100644 --- a/src/nvim/search.c +++ b/src/nvim/search.c @@ -474,7 +474,7 @@ void set_last_search_pat(const char_u *s, int idx, int magic, int setlast) spats[idx].timestamp = os_time(); spats[idx].additional_data = NULL; spats[idx].magic = magic; - spats[idx].no_scs = FALSE; + spats[idx].no_scs = false; spats[idx].off.dir = '/'; set_vv_searchforward(); spats[idx].off.line = FALSE; |