comparison src/fileio.c @ 15510:41fbbcea0f1b v8.1.0763

patch 8.1.0763: nobody is using the Sun Workshop support commit https://github.com/vim/vim/commit/bb1969b6ab28120c93b77817e7b6075e1aecf663 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jan 17 15:45:25 2019 +0100 patch 8.1.0763: nobody is using the Sun Workshop support Problem: Nobody is using the Sun Workshop support. Solution: Remove the Workshop support.
author Bram Moolenaar <Bram@vim.org>
date Thu, 17 Jan 2019 16:00:08 +0100
parents 55ccc2d353bd
children 2ad5f0ffaa2e
comparison
equal deleted inserted replaced
15509:2650d9461407 15510:41fbbcea0f1b
5091 /* 5091 /*
5092 * Remove the backup unless 'backup' option is set 5092 * Remove the backup unless 'backup' option is set
5093 */ 5093 */
5094 if (!p_bk && backup != NULL && mch_remove(backup) != 0) 5094 if (!p_bk && backup != NULL && mch_remove(backup) != 0)
5095 emsg(_("E207: Can't delete backup file")); 5095 emsg(_("E207: Can't delete backup file"));
5096
5097 #ifdef FEAT_SUN_WORKSHOP
5098 if (usingSunWorkShop)
5099 workshop_file_saved((char *) ffname);
5100 #endif
5101 5096
5102 goto nofail; 5097 goto nofail;
5103 5098
5104 /* 5099 /*
5105 * Finish up. We get here either after failure or success. 5100 * Finish up. We get here either after failure or success.