diff options
author | Bram Moolenaar <Bram@vim.org> | 2009-04-22 11:52:33 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2009-04-22 11:52:33 +0000 |
commit | b9c1e96ce18e157aa3f05c76877ad5505d9f5ee1 (patch) | |
tree | a06a79f00c2c46985ab021b68fbd3c16ed1895e7 /src | |
parent | 99133038dce89cde028683e2ec3d86cfcb10e82f (diff) | |
download | vim-b9c1e96ce18e157aa3f05c76877ad5505d9f5ee1.zip |
updated for version 7.2-151
Diffstat (limited to 'src')
-rw-r--r-- | src/ex_getln.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ex_getln.c b/src/ex_getln.c index 3f1ea7180..3bf78db79 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 e2963645c..afb3650e1 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, |