summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-03-25 15:07:43 +0100
committerBram Moolenaar <Bram@vim.org>2017-03-25 15:07:43 +0100
commit6c0c1e8052811a818739e2f3d543291b7a347ad0 (patch)
tree7a7a122d90a436acf99b24b59a29728ae1d03370
parentba6ad17378ddb9b33412d85174224997b8ff7a4f (diff)
downloadvim-git-6c0c1e8052811a818739e2f3d543291b7a347ad0.tar.gz
patch 8.0.0506: can't build with ANSI Cv8.0.0506
Problem: Can't build with ANSI C. Solution: Move declarations to start of block.
-rw-r--r--src/ex_docmd.c5
-rw-r--r--src/version.c2
2 files changed, 5 insertions, 2 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 17fec33ec..9782557c1 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -3250,6 +3250,9 @@ find_command(exarg_T *eap, int *full UNUSED)
if (ASCII_ISLOWER(eap->cmd[0]))
{
+ int c1 = eap->cmd[0];
+ int c2 = eap->cmd[1];
+
if (command_count != (int)CMD_SIZE)
{
iemsg((char_u *)_("E943: Command table needs to be updated, run 'make cmdidxs'"));
@@ -3258,8 +3261,6 @@ find_command(exarg_T *eap, int *full UNUSED)
/* Use a precomputed index for fast look-up in cmdnames[]
* taking into account the first 2 letters of eap->cmd. */
- int c1 = eap->cmd[0];
- int c2 = eap->cmd[1];
eap->cmdidx = cmdidxs1[CharOrdLow(c1)];
if (ASCII_ISLOWER(c2))
eap->cmdidx += cmdidxs2[CharOrdLow(c1)][CharOrdLow(c2)];
diff --git a/src/version.c b/src/version.c
index 971709422..e19da86a1 100644
--- a/src/version.c
+++ b/src/version.c
@@ -765,6 +765,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 506,
+/**/
505,
/**/
504,