aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/search.c
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2021-07-26 20:41:54 +0200
committerGitHub <noreply@github.com>2021-07-26 20:41:54 +0200
commitc818d8df349fff514eef8a529afe63e8102ca281 (patch)
tree0acd1856fccebc93e6c98725f211617f58e11c57 /src/nvim/search.c
parent3e00d4f01cebedb758050e2e3faf065036fcfdc2 (diff)
parentdfd9d861dc218dfe2b5e63eb4d6b77e163b33d59 (diff)
downloadrneovim-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.c2
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;