From 14018f65c9614b28614dbc7b1c740aa83f02b740 Mon Sep 17 00:00:00 2001 From: Thomas Roessler Date: Fri, 2 Oct 1998 09:40:50 +0000 Subject: [PATCH] More () fixes. --- compose.c | 8 ++++---- mutt.h | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/compose.c b/compose.c index 24a163d9..21a829c2 100644 --- a/compose.c +++ b/compose.c @@ -264,13 +264,13 @@ static void draw_envelope (HEADER *msg, char *fcc) #ifdef _PGPPATH mvaddstr (HDR_PGP, 0, " PGP: "); if ((msg->pgp & (PGPENCRYPT | PGPSIGN)) == (PGPENCRYPT | PGPSIGN)) - addstr _("Sign, Encrypt"); + addstr (_("Sign, Encrypt")); else if (msg->pgp & PGPENCRYPT) - addstr _("Encrypt"); + addstr (_("Encrypt")); else if (msg->pgp & PGPSIGN) - addstr _("Sign"); + addstr (_("Sign")); else - addstr _("Clear"); + addstr (_("Clear")); clrtoeol (); if (msg->pgp & PGPSIGN) diff --git a/mutt.h b/mutt.h index 0e373332..ff134c3a 100644 --- a/mutt.h +++ b/mutt.h @@ -36,13 +36,13 @@ # include # define _(a) (gettext (a)) # ifdef gettext_noop -# define N_(a) (gettext_noop (a)) +# define N_(a) gettext_noop (a) # else # define N_(a) (a) # endif #else # define _(a) (a) -# define N_(a) (a) +# define N_(a) a #endif #ifdef SUBVERSION -- 2.40.0