summaryrefslogtreecommitdiffstats
path: root/curs_lib.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-10-02 09:38:06 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-10-02 09:38:06 +0000
commit6007032453d4c6c42a95fb5501f304df2eca208d (patch)
tree1be3147e1c5d232a38f483e658036067da35cc86 /curs_lib.c
parent6cea8491831669a2260e5bc69451263ef79a52f9 (diff)
With SLang, addstr() is a macro. This means we should put
additional braces around _()-style arguments.
Diffstat (limited to 'curs_lib.c')
-rw-r--r--curs_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/curs_lib.c b/curs_lib.c
index dc21b477..15482458 100644
--- a/curs_lib.c
+++ b/curs_lib.c
@@ -300,7 +300,7 @@ int mutt_enter_fname (const char *prompt, char *buf, size_t blen, int *redraw, i
int i;
mvaddstr (LINES-1, 0, (char *) prompt);
- addstr _(" ('?' for list): ");
+ addstr (_(" ('?' for list): "));
if (buf[0])
addstr (buf);
clrtoeol ();