]> granicus.if.org Git - neomutt/commit
Fix dubious use macro for _() / gettext() (#376)
authorRichard Russon <rich@flatcap.org>
Thu, 9 Feb 2017 19:16:50 +0000 (19:16 +0000)
committerguiniol <gui-gui@netcourrier.com>
Thu, 9 Feb 2017 19:16:50 +0000 (20:16 +0100)
commit81ba64a57739ca90b46dff32ed4b22807477200a
tree46927fadef1c32a76263d53f912a78b90f250b5f
parente2a16c6fc9058c0a2e8f59a86abce7bdb866ecd6
Fix dubious use macro for _() / gettext() (#376)

The macro _() is defined as:

    #define _(a) (gettext(a))

Which has led to a lot of functions omitting the ()s, e.g.

    mutt_message _("string");

This only compiles because of a side-effect of the macro.

In addition, some translatable strings didn't have a _()
wrapper, so it was added
53 files changed:
addrbook.c
alias.c
attach.c
browser.c
commands.c
compose.c
crypt-gpgme.c
crypt.c
cryptglue.c
curs_main.c
flags.c
handler.c
imap/auth_anon.c
imap/auth_cram.c
imap/auth_gss.c
imap/auth_login.c
imap/auth_plain.c
imap/auth_sasl.c
imap/browse.c
imap/imap.c
imap/message.c
init.c
keymap.c
lib.c
lib.h
main.c
mbox.c
menu.c
mutt_socket.c
muttlib.c
mx.c
nntp.c
pager.c
parse.c
pattern.c
pgp.c
pgpinvoke.c
pgpkey.c
pop.c
pop_auth.c
pop_lib.c
postpone.c
query.c
recvattach.c
recvcmd.c
remailer.c
rfc1524.c
safe_asprintf.c
send.c
sendlib.c
smime.c
sort.c
thread.c