GRID_DEBUG is no longer needed.

This commit is contained in:
Nicholas Marriott
2014-03-07 15:51:27 +00:00
parent ebe7bd7c8b
commit c5a30513ed
3 changed files with 0 additions and 50 deletions

10
tmux.h
View File

@ -660,16 +660,6 @@ struct utf8_data {
u_int width;
};
/* Grid output. */
#if defined(DEBUG) && \
((defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || \
(defined(__GNUC__) && __GNUC__ >= 3))
#define GRID_DEBUG(gd, fmt, ...) log_debug2("%s: (sx=%u, sy=%u, hsize=%u) " \
fmt, __func__, (gd)->sx, (gd)->sy, (gd)->hsize, ## __VA_ARGS__)
#else
#define GRID_DEBUG(...)
#endif
/* Grid attributes. */
#define GRID_ATTR_BRIGHT 0x1
#define GRID_ATTR_DIM 0x2