summaryrefslogtreecommitdiffstats
path: root/src/fold.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fold.c')
-rw-r--r--src/fold.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fold.c b/src/fold.c
index 7d993f70fd..f8331be460 100644
--- a/src/fold.c
+++ b/src/fold.c
@@ -563,9 +563,9 @@ foldManualAllowed(int create)
if (foldmethodIsManual(curwin) || foldmethodIsMarker(curwin))
return TRUE;
if (create)
- emsg(_("E350: Cannot create fold with current 'foldmethod'"));
+ emsg(_(e_cannot_create_fold_with_current_foldmethod));
else
- emsg(_("E351: Cannot delete fold with current 'foldmethod'"));
+ emsg(_(e_cannot_delete_fold_with_current_foldmethod));
return FALSE;
}