diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-09-11 15:08:56 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-09-11 15:08:56 +0200 |
commit | cbeab96f87b91ed4b096216c397552b7f6d270f9 (patch) | |
tree | bc597525b1df01eac04d02dbbac2ed61208ff8fb /src | |
parent | 7e1479b86c590a66b63a274c079b7f18907d45a4 (diff) | |
download | vim-git-cbeab96f87b91ed4b096216c397552b7f6d270f9.tar.gz |
patch 7.4.2363v7.4.2363
Problem: Superfluous function prototypes.
Solution: Remove them.
Diffstat (limited to 'src')
-rw-r--r-- | src/regexp.c | 3 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/regexp.c b/src/regexp.c index 96cfb4060..0884912bf 100644 --- a/src/regexp.c +++ b/src/regexp.c @@ -255,9 +255,6 @@ #define un_Magic(x) ((x) + 256) #define is_Magic(x) ((x) < 0) -static int no_Magic(int x); -static int toggle_Magic(int x); - static int no_Magic(int x) { diff --git a/src/version.c b/src/version.c index 8a6062d76..5f1eef54e 100644 --- a/src/version.c +++ b/src/version.c @@ -764,6 +764,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2363, +/**/ 2362, /**/ 2361, |