summaryrefslogtreecommitdiffstats
path: root/browser.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 /browser.c
parent6cea8491831669a2260e5bc69451263ef79a52f9 (diff)
With SLang, addstr() is a macro. This means we should put
additional braces around _()-style arguments.
Diffstat (limited to 'browser.c')
-rw-r--r--browser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/browser.c b/browser.c
index 493d1860..032d5d3f 100644
--- a/browser.c
+++ b/browser.c
@@ -741,9 +741,9 @@ void mutt_select_file (char *f, size_t flen, int buffy)
if (i == OP_SORT_REVERSE)
{
reverse = SORT_REVERSE;
- addstr _("Reverse sort by (d)ate, (a)lpha, si(z)e or do(n)'t sort? ");
+ addstr (_("Reverse sort by (d)ate, (a)lpha, si(z)e or do(n)'t sort? "));
} else {
- addstr _("Sort by (d)ate, (a)lpha, si(z)e or do(n)'t sort? ");
+ addstr (_("Sort by (d)ate, (a)lpha, si(z)e or do(n)'t sort? "));
}
clrtoeol ();