diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-01-02 19:25:26 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-01-02 19:25:26 +0000 |
commit | ac78dd4a352196ca4e6640f8e4caaf126afd49e3 (patch) | |
tree | c741cbf5a8f33503e42af2294afdbd4bf15b0ae9 /src/hardcopy.c | |
parent | 3d0da09bb2d31afc611bf1c4b35796739d87ed63 (diff) | |
download | vim-git-ac78dd4a352196ca4e6640f8e4caaf126afd49e3.tar.gz |
patch 8.2.3985: error messages are spread outv8.2.3985
Problem: Error messages are spread out.
Solution: Move more error messages to errors.h.
Diffstat (limited to 'src/hardcopy.c')
-rw-r--r-- | src/hardcopy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hardcopy.c b/src/hardcopy.c index 3993f4d58..da64e1cf4 100644 --- a/src/hardcopy.c +++ b/src/hardcopy.c @@ -3135,7 +3135,7 @@ mch_print_end(prt_settings_T *psettings) // Not printing to a file: use 'printexpr' to print the file. if (eval_printexpr(prt_ps_file_name, psettings->arguments) == FAIL) - emsg(_("E365: Failed to print PostScript file")); + emsg(_(e_failed_to_print_postscript_file)); else prt_message((char_u *)_("Print job sent.")); } |