comparison src/hardcopy.c @ 26909:aa65d1808bd0 v8.2.3983

patch 8.2.3983: error messages are spread out Commit: https://github.com/vim/vim/commit/eaaac014a01ce37c1f86dbda054c01a5c6f034e7 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 2 17:00:40 2022 +0000 patch 8.2.3983: error messages are spread out Problem: Error messages are spread out. Solution: Move more error messages to errors.h.
author Bram Moolenaar <Bram@vim.org>
date Sun, 02 Jan 2022 18:15:04 +0100
parents 06a137af96f8
children d4e61d61afd9
comparison
equal deleted inserted replaced
26908:006aa45685f9 26909:aa65d1808bd0
2639 vim_free(p); 2639 vim_free(p);
2640 } 2640 }
2641 } 2641 }
2642 if (prt_ps_fd == NULL) 2642 if (prt_ps_fd == NULL)
2643 { 2643 {
2644 emsg(_("E324: Can't open PostScript output file")); 2644 emsg(_(e_cant_open_postscript_output_file));
2645 mch_print_cleanup(); 2645 mch_print_cleanup();
2646 return FAIL; 2646 return FAIL;
2647 } 2647 }
2648 2648
2649 prt_bufsiz = psettings->chars_per_line; 2649 prt_bufsiz = psettings->chars_per_line;