diff options
author | Bram Moolenaar <Bram@vim.org> | 2007-09-25 16:00:00 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2007-09-25 16:00:00 +0000 |
commit | 9d2c8c1a66c2f354f06065d8261ac87e6c407097 (patch) | |
tree | 6dfee2d9b0bb5a1baa1f69bbf761c53f658e4a14 /src/main.c | |
parent | 719939c888fe583419eec652a7cc71172bf3afb1 (diff) | |
download | vim-git-9d2c8c1a66c2f354f06065d8261ac87e6c407097.tar.gz |
updated for version 7.1-120v7.1.120
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c index 906d8bd5e..6bd9ff4a5 100644 --- a/src/main.c +++ b/src/main.c @@ -1334,6 +1334,10 @@ getout(exitval) #ifdef FEAT_CSCOPE cs_end(); #endif +#ifdef FEAT_EVAL + if (garbage_collect_at_exit) + garbage_collect(); +#endif mch_exit(exitval); } |