diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-09-30 21:43:26 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-09-30 21:43:26 +0200 |
commit | 6dff58f15cede9139b2fcfc64c9064326ea3d3b0 (patch) | |
tree | f2326055f5fe8bb5948374155f11bd220c1d9dc7 /src/charset.c | |
parent | f45d747ebf920940b041f5c75c2bfdffb6b670ae (diff) | |
download | vim-git-6dff58f15cede9139b2fcfc64c9064326ea3d3b0.tar.gz |
patch 8.1.0443: unnecessary static function prototypesv8.1.0443
Problem: Unnecessary static function prototypes.
Solution: Remove unnecessary prototypes.
Diffstat (limited to 'src/charset.c')
-rw-r--r-- | src/charset.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/charset.c b/src/charset.c index a4816887e..028095453 100644 --- a/src/charset.c +++ b/src/charset.c @@ -9,10 +9,6 @@ #include "vim.h" -#ifdef FEAT_LINEBREAK -static int win_chartabsize(win_T *wp, char_u *p, colnr_T col); -#endif - #ifdef FEAT_MBYTE # if defined(HAVE_WCHAR_H) # include <wchar.h> /* for towupper() and towlower() */ |