summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2008-07-24 11:51:40 +0000
committerBram Moolenaar <Bram@vim.org>2008-07-24 11:51:40 +0000
commit688e5f7ee7e9384494e9c16ae48c512980c54e4f (patch)
tree9e4b2e3575a6720be516cf3fba53298685838170
parent4394bfff3fcd4eaced1f19ed088719de4632e0d9 (diff)
updated for version 7.2b-012v7.2b.012
-rw-r--r--src/main.c7
-rw-r--r--src/version.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 587081bda1..7718e97c8f 100644
--- a/src/main.c
+++ b/src/main.c
@@ -2245,7 +2245,12 @@ scripterror:
/* Remember this argument has been added to the argument list.
* Needed when 'encoding' is changed. */
used_file_arg(argv[0], parmp->literal, parmp->full_path,
- parmp->diff_mode);
+# ifdef FEAT_DIFF
+ parmp->diff_mode
+# else
+ FALSE
+# endif
+ );
}
#endif
}
diff --git a/src/version.c b/src/version.c
index cd69cfc022..f46ebda2c5 100644
--- a/src/version.c
+++ b/src/version.c
@@ -677,6 +677,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 12,
+/**/
11,
/**/
10,