summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-09-11 15:08:56 +0200
committerBram Moolenaar <Bram@vim.org>2016-09-11 15:08:56 +0200
commitcbeab96f87b91ed4b096216c397552b7f6d270f9 (patch)
treebc597525b1df01eac04d02dbbac2ed61208ff8fb
parent7e1479b86c590a66b63a274c079b7f18907d45a4 (diff)
downloadvim-git-cbeab96f87b91ed4b096216c397552b7f6d270f9.tar.gz
patch 7.4.2363v7.4.2363
Problem: Superfluous function prototypes. Solution: Remove them.
-rw-r--r--src/regexp.c3
-rw-r--r--src/version.c2
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,