]> git.sur5r.net Git - i3/i3/commitdiff
i3/log.h: Prepare for libi3.h inclusion
authorQuentin Glidic <sardemff7+git@sardemff7.net>
Fri, 10 Aug 2012 13:39:50 +0000 (15:39 +0200)
committerQuentin Glidic <sardemff7+git@sardemff7.net>
Mon, 13 Aug 2012 09:30:08 +0000 (11:30 +0200)
include/log.h

index 0854628daf581a8958ab854a61e6f0b26a1faa31..26e85f042ee2ebab2d00160dcc6d9cc825517b20 100644 (file)
 /** ##__VA_ARGS__ means: leave out __VA_ARGS__ completely if it is empty, that
    is, delete the preceding comma */
 #define LOG(fmt, ...) verboselog(fmt, ##__VA_ARGS__)
+/* We will include libi3.h which define its own version of ELOG.
+ * We want *our* version, so we undef the libi3 one. */
+#if defined(ELOG)
+#undef ELOG
+#endif
 #define ELOG(fmt, ...) errorlog("ERROR: " fmt, ##__VA_ARGS__)
 #define DLOG(fmt, ...) debuglog("%s:%s:%d - " fmt, I3__FILE__, __FUNCTION__, __LINE__, ##__VA_ARGS__)