summaryrefslogtreecommitdiffstats
path: root/help.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-10-03 18:18:39 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-10-03 18:18:39 +0000
commit533ff8e263b3ede5f2a8f450cad3e34a34a341c6 (patch)
tree69968338adadb67a487aa62f8068bf590bfca01b /help.c
parent02dd4a2084dd4753be66de004ff6c4a06dc97acd (diff)
Remove an unprotected gettext() call.
Diffstat (limited to 'help.c')
-rw-r--r--help.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/help.c b/help.c
index 6dbd8cea..fe96b122 100644
--- a/help.c
+++ b/help.c
@@ -76,7 +76,7 @@ mutt_compile_help (char *buf, size_t buflen, int menu, struct mapping_t *items)
*pbuf++ = ' ';
buflen -= 2;
}
- mutt_make_help (pbuf, buflen, gettext(items[i].name), menu, items[i].value);
+ mutt_make_help (pbuf, buflen, _(items[i].name), menu, items[i].value);
len = strlen (pbuf);
pbuf += len;
buflen -= len;