From e29a27f6f8eef8f00d3c2d4cd9811d81cf3026b3 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 20 Jul 2021 21:07:36 +0200 Subject: patch 8.2.3190: error messages are spread out Problem: Error messages are spread out. Solution: Move error messages to errors.h and give them a clear name. --- src/edit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/edit.c') diff --git a/src/edit.c b/src/edit.c index d944080300..5280a82b4a 100644 --- a/src/edit.c +++ b/src/edit.c @@ -2874,7 +2874,7 @@ stuff_inserted( ptr = get_last_insert(); if (ptr == NULL) { - emsg(_(e_noinstext)); + emsg(_(e_no_inserted_text_yet)); return FAIL; } -- cgit v1.2.3