# HG changeset patch # User Bram Moolenaar # Date 1389700625 -3600 # Node ID ec93f50f1d93c4c279606117a9f3eb37301b051a # Parent ace2fb2232619d6c0c0741aafe75e084badd275d updated for version 7.4.146 Problem: When starting Vim with "-u NONE" v:oldfiles is NULL. Solution: Set v:oldfiles to an empty list. (Yasuhiro Matsumoto) diff --git a/src/main.c b/src/main.c --- a/src/main.c +++ b/src/main.c @@ -702,6 +702,11 @@ vim_main2(int argc UNUSED, char **argv U TIME_MSG("reading viminfo"); } #endif +#ifdef FEAT_EVAL + /* It's better to make v:oldfiles an empty list than NULL. */ + if (get_vim_var_list(VV_OLDFILES) == NULL) + set_vim_var_list(VV_OLDFILES, list_alloc()); +#endif #ifdef FEAT_QUICKFIX /* @@ -1048,7 +1053,7 @@ main_loop(cmdwin, noexmode) /* Setup to catch a terminating error from the X server. Just ignore * it, restore the state and continue. This might not always work * properly, but at least we don't exit unexpectedly when the X server - * exists while Vim is running in a console. */ + * exits while Vim is running in a console. */ if (!cmdwin && !noexmode && SETJMP(x_jump_env)) { State = NORMAL; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -739,6 +739,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 146, +/**/ 145, /**/ 144,