summaryrefslogtreecommitdiffstats
path: root/src/tag.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-12-05 21:46:34 +0000
committerBram Moolenaar <Bram@vim.org>2021-12-05 21:46:34 +0000
commit12f3c1b77fb39dc338304d5484cdbc99da27389a (patch)
tree547976b1abc154007b9e8bfed81a69b7b457706e /src/tag.c
parente5710a02cb78c2a0a868ea55740835c78ddecbb4 (diff)
patch 8.2.3749: error messages are everywherev8.2.3749
Problem: Error messages are everywhere. Solution: Move more error messages to errors.h and adjust the names.
Diffstat (limited to 'src/tag.c')
-rw-r--r--src/tag.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tag.c b/src/tag.c
index a4acbacd86..f932934769 100644
--- a/src/tag.c
+++ b/src/tag.c
@@ -350,7 +350,7 @@ do_tag(
tagstacklen == 0)
{
// empty stack
- emsg(_(e_tagstack));
+ emsg(_(e_tag_stack_empty));
goto end_do_tag;
}