From d8e44476d84b5f0cc8c4de080a47a3a9af547028 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 21 Jul 2021 22:20:33 +0200 Subject: patch 8.2.3197: error messages are spread out Problem: Error messages are spread out. Solution: Move a few more error messages to errors.h. --- 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 5280a82b4..96464ded0 100644 --- a/src/edit.c +++ b/src/edit.c @@ -165,7 +165,7 @@ edit( // Don't allow inserting in the sandbox. if (sandbox != 0) { - emsg(_(e_sandbox)); + emsg(_(e_not_allowed_in_sandbox)); return FALSE; } #endif -- cgit v1.2.1