summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2009-04-22 11:52:33 +0000
committervimboss <devnull@localhost>2009-04-22 11:52:33 +0000
commit83cfbf56ac3b13d69cdba31ba1c1316f4960f97c (patch)
treea06a79f00c2c46985ab021b68fbd3c16ed1895e7
parentae3b1b84558ff6ce06077c588a36a706244e01a4 (diff)
downloadvim-83cfbf56ac3b13d69cdba31ba1c1316f4960f97c.tar.gz
updated for version 7.2-151v7.2.151v7-2-151
-rw-r--r--src/ex_getln.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ex_getln.c b/src/ex_getln.c
index 3f1ea718..3bf78db7 100644
--- a/src/ex_getln.c
+++ b/src/ex_getln.c
@@ -5686,7 +5686,7 @@ ex_history(eap)
histype1 = get_histtype(arg);
if (histype1 == -1)
{
- if (STRICMP(arg, "all") == 0)
+ if (STRNICMP(arg, "all", STRLEN(arg)) == 0)
{
histype1 = 0;
histype2 = HIST_COUNT-1;
diff --git a/src/version.c b/src/version.c
index e2963645..afb3650e 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 */
/**/
+ 151,
+/**/
150,
/**/
149,