From 436b5adc9770a2568209dd5ab1f98bd1afc91898 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 31 Dec 2021 22:49:24 +0000 Subject: patch 8.2.3961: error messages are spread out Problem: Error messages are spread out. Solution: Move more errors to errors.h. --- src/ops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ops.c') diff --git a/src/ops.c b/src/ops.c index 714c6bdbe..21df1a6ba 100644 --- a/src/ops.c +++ b/src/ops.c @@ -745,7 +745,7 @@ op_delete(oparg_T *oap) msg_silent = msg_silent_save; if (n != 'y') { - emsg(_(e_abort)); + emsg(_(e_command_aborted)); return FAIL; } } -- cgit v1.2.1