summaryrefslogtreecommitdiffstats
path: root/src/ex_getln.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-08-26 10:33:54 +0100
committerBram Moolenaar <Bram@vim.org>2022-08-26 10:33:54 +0100
commit9b7d2a959646560f5770329f4428c4739eed4656 (patch)
treec5fa6511c16a9429fc9c35bf20b7661416d73705 /src/ex_getln.c
parent2bd9dbc19fc67395cfa1226dda7326071ab22464 (diff)
patch 9.0.0271: using INIT() in non-header filesv9.0.0271
Problem: Using INIT() in non-header files. Solution: Remove INIT(). (closes #10981)
Diffstat (limited to 'src/ex_getln.c')
-rw-r--r--src/ex_getln.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_getln.c b/src/ex_getln.c
index 7b84af6153..022c40516d 100644
--- a/src/ex_getln.c
+++ b/src/ex_getln.c
@@ -59,7 +59,7 @@ static int empty_pattern_magic(char_u *pat, size_t len, magic_T magic_val);
#ifdef FEAT_CMDWIN
static int open_cmdwin(void);
-static int cedit_key INIT(= -1); // key value of 'cedit' option
+static int cedit_key = -1; // key value of 'cedit' option
#endif