summaryrefslogtreecommitdiffstats
path: root/src/hardcopy.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-02 17:00:40 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-02 17:00:40 +0000
commiteaaac014a01ce37c1f86dbda054c01a5c6f034e7 (patch)
treeb775ac0b4332e8f73bc763ed1414f73639c187d6 /src/hardcopy.c
parent8bfa0eb863357c1013024233ebb2e95a0a848002 (diff)
patch 8.2.3983: error messages are spread outv8.2.3983
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hardcopy.c b/src/hardcopy.c
index 9a7e7c630a..3993f4d584 100644
--- a/src/hardcopy.c
+++ b/src/hardcopy.c
@@ -2641,7 +2641,7 @@ mch_print_init(
}
if (prt_ps_fd == NULL)
{
- emsg(_("E324: Can't open PostScript output file"));
+ emsg(_(e_cant_open_postscript_output_file));
mch_print_cleanup();
return FAIL;
}