changeset 427:2ea3005a4b7f

Conditional #definition of _()
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 31 Dec 2006 21:52:00 +0000
parents e4a7235746ec
children 33c3bb80d2a5
files src/xmms-sid.h
diffstat 1 files changed, 7 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/xmms-sid.h	Sun Dec 31 21:51:05 2006 +0000
+++ b/src/xmms-sid.h	Sun Dec 31 21:52:00 2006 +0000
@@ -217,8 +217,15 @@
 
 void	xs_error(const char *, ...);
 
+
+/* For possible i18n support
+ */
+#ifndef _
 #define _(x) x
+#endif
 
+/* Debugging
+ */
 #ifndef DEBUG_NP
 void	XSDEBUG(const char *, ...);
 #else