summaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-12-05 13:50:55 +0000
committerBram Moolenaar <Bram@vim.org>2022-12-05 13:50:55 +0000
commitc216a7a21a25a701b84b79abc1ba6ab0baa3a311 (patch)
treee8bda92c7339e1960d00dc035f0de82f3c2b975a /src/main.c
parent65214053f6a4bdb1099404a4b5dccb85ca3e5c7c (diff)
patch 9.0.1007: there is no way to get a list of swap file namesv9.0.1007
Problem: There is no way to get a list of swap file names. Solution: Add the swapfilelist() function. Use it in the test script to clean up. Remove deleting individual swap files.
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 477f3d6194..41a509d63a 100644
--- a/src/main.c
+++ b/src/main.c
@@ -507,7 +507,7 @@ vim_main2(void)
*/
if (recoverymode && params.fname == NULL)
{
- recover_names(NULL, TRUE, 0, NULL);
+ recover_names(NULL, TRUE, NULL, 0, NULL);
mch_exit(0);
}