diff options
Diffstat (limited to 'gettext.h')
-rw-r--r-- | gettext.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -44,6 +44,8 @@ extern int use_gettext_poison(void); static inline FORMAT_PRESERVING(1) const char *_(const char *msgid) { + if (!*msgid) + return ""; return use_gettext_poison() ? "# GETTEXT POISON #" : gettext(msgid); } |