diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-01-01 21:59:18 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-01-01 21:59:18 +0000 |
commit | 9a846fbaa569b3690d70606f2a86e97f77a05496 (patch) | |
tree | cbe5304927fe21586593c94342e4f023aa3e0837 /src/textprop.c | |
parent | b34689010a587e85ff724051f276513a15c634d0 (diff) | |
download | vim-git-9a846fbaa569b3690d70606f2a86e97f77a05496.tar.gz |
patch 8.2.3977: error messages are spread outv8.2.3977
Problem: Error messages are spread out.
Solution: Move more error messages to errors.h.
Diffstat (limited to 'src/textprop.c')
-rw-r--r-- | src/textprop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textprop.c b/src/textprop.c index 4c17a4aca..c28d4e42a 100644 --- a/src/textprop.c +++ b/src/textprop.c @@ -222,7 +222,7 @@ prop_add_one( if (buf->b_ml.ml_mfp == NULL) { - emsg(_("E275: Cannot add text property to unloaded buffer")); + emsg(_(e_cannot_add_text_property_to_unloaded_buffer)); return FAIL; } |