mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
ok, small fix due to me not considering the problem with nesting of comments
Original commit message from CVS: ok, small fix due to me not considering the problem with nesting of comments
This commit is contained in:
parent
5d35edde73
commit
47145c507a
1 changed files with 4 additions and 4 deletions
|
@ -33,10 +33,10 @@
|
||||||
#define _(String) dgettext(PACKAGE,String)
|
#define _(String) dgettext(PACKAGE,String)
|
||||||
#ifdef gettext_noop
|
#ifdef gettext_noop
|
||||||
#define N_(String) gettext_noop(String)
|
#define N_(String) gettext_noop(String)
|
||||||
#else /* gettext_noop */
|
#else // gettext_noop
|
||||||
#define N_(String) (String)
|
#define N_(String) (String)
|
||||||
#endif /* gettext_noop */
|
#endif // gettext_noop
|
||||||
#else /* ENABLE_NLS */
|
#else // ENABLE_NLS
|
||||||
#define _(String) (String)
|
#define _(String) (String)
|
||||||
#define N_(String) (String)
|
#define N_(String) (String)
|
||||||
#define textdomain(String) (String)
|
#define textdomain(String) (String)
|
||||||
|
@ -44,7 +44,7 @@
|
||||||
#define dgettext(Domain,String) (String)
|
#define dgettext(Domain,String) (String)
|
||||||
#define dcgettext(Domain,String,Type) (String)
|
#define dcgettext(Domain,String,Type) (String)
|
||||||
#define bindtextdomain(Domain,Directory) (Domain)
|
#define bindtextdomain(Domain,Directory) (Domain)
|
||||||
#endif /* ENABLE_NLS */
|
#endif // ENABLE_NLS
|
||||||
*****/
|
*****/
|
||||||
|
|
||||||
#endif /* HAVE_CONFIG_H */
|
#endif /* HAVE_CONFIG_H */
|
||||||
|
|
Loading…
Reference in a new issue