aboutsummaryrefslogtreecommitdiff
path: root/src/include/gettext.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-03-03 12:55:36 +0100
committerChristian Grothoff <christian@grothoff.org>2020-03-03 12:55:36 +0100
commitf22abb4d1339fe55f5c10545de4b80fe3ac6aebe (patch)
treead9ebbbeb6584d64310088b9769704f048f9daa4 /src/include/gettext.h
parent0f3f4f01cce39f83f029caa4c285035c409c0ced (diff)
downloadlibextractor-f22abb4d1339fe55f5c10545de4b80fe3ac6aebe.tar.gz
libextractor-f22abb4d1339fe55f5c10545de4b80fe3ac6aebe.zip
uncrustifying indentation
Diffstat (limited to 'src/include/gettext.h')
-rw-r--r--src/include/gettext.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/gettext.h b/src/include/gettext.h
index 774965b..98e6784 100644
--- a/src/include/gettext.h
+++ b/src/include/gettext.h
@@ -46,11 +46,11 @@
46# define dgettext(Domainname, Msgid) ((const char *) (Msgid)) 46# define dgettext(Domainname, Msgid) ((const char *) (Msgid))
47# define dcgettext(Domainname, Msgid, Category) ((const char *) (Msgid)) 47# define dcgettext(Domainname, Msgid, Category) ((const char *) (Msgid))
48# define ngettext(Msgid1, Msgid2, N) \ 48# define ngettext(Msgid1, Msgid2, N) \
49 ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2)) 49 ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2))
50# define dngettext(Domainname, Msgid1, Msgid2, N) \ 50# define dngettext(Domainname, Msgid1, Msgid2, N) \
51 ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2)) 51 ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2))
52# define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \ 52# define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \
53 ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2)) 53 ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2))
54/* slight modification here to avoid warnings: generate NO code, 54/* slight modification here to avoid warnings: generate NO code,
55 not even the cast... */ 55 not even the cast... */
56# define textdomain(Domainname) 56# define textdomain(Domainname)