diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-07-10 15:18:22 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-07-10 15:18:22 +0200 |
commit | f65e5667dfd0281fa197638ab3361f0bc007fc14 (patch) | |
tree | bf30002816e3ce93b5df064562eac9d856218119 /src/buffer.c | |
parent | 773c1ef81b2d29e40592cd2743a7d7a6e554e06f (diff) | |
download | vim-git-f65e5667dfd0281fa197638ab3361f0bc007fc14.tar.gz |
updated for version 7.3.596v7.3.596
Problem: Can't remove all signs for a file or buffer.
Solution: Support "*" for the sign id. (Christian Brabandt)
Diffstat (limited to 'src/buffer.c')
-rw-r--r-- | src/buffer.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/buffer.c b/src/buffer.c index ba4692a59..d6d039f0e 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -57,7 +57,6 @@ static void clear_wininfo __ARGS((buf_T *buf)); #if defined(FEAT_SIGNS) static void insert_sign __ARGS((buf_T *buf, signlist_T *prev, signlist_T *next, int id, linenr_T lnum, int typenr)); -static void buf_delete_signs __ARGS((buf_T *buf)); #endif #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX) @@ -5537,7 +5536,7 @@ buf_signcount(buf, lnum) /* * Delete signs in buffer "buf". */ - static void + void buf_delete_signs(buf) buf_T *buf; { |