summaryrefslogtreecommitdiffstats
path: root/src/globals.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-07-04 17:34:33 +0100
committerBram Moolenaar <Bram@vim.org>2022-07-04 17:34:33 +0100
commit96ba25ac01279f73c0ecb5d4aa4ff37aa359e5eb (patch)
treea7ebf066dede8010563debf70816231c4cdf75f4 /src/globals.h
parent54e5fed6d27b747ff152cdb6edfb72ff60e70939 (diff)
patch 9.0.0036: 'fillchars' cannot have window-local valuesv9.0.0036
Problem: 'fillchars' cannot have window-local values. Solution: Make 'fillchars' global-local. (closes #5206)
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/globals.h b/src/globals.h
index ad563e4e96..6f2a1a5cd5 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -1380,17 +1380,6 @@ EXTERN char_u *homedir INIT(= NULL);
// directory is not a local directory, globaldir is NULL.
EXTERN char_u *globaldir INIT(= NULL);
-// Characters from 'fillchars' option
-EXTERN int fill_stl INIT(= ' ');
-EXTERN int fill_stlnc INIT(= ' ');
-EXTERN int fill_vert INIT(= ' ');
-EXTERN int fill_fold INIT(= '-');
-EXTERN int fill_foldopen INIT(= '-');
-EXTERN int fill_foldclosed INIT(= '+');
-EXTERN int fill_foldsep INIT(= '|');
-EXTERN int fill_diff INIT(= '-');
-EXTERN int fill_eob INIT(= '~');
-
#ifdef FEAT_FOLDING
EXTERN int disable_fold_update INIT(= 0);
#endif