diff options
author | nicm <nicm> | 2014-03-31 21:42:27 +0000 |
---|---|---|
committer | nicm <nicm> | 2014-03-31 21:42:27 +0000 |
commit | 7bdb675469336e1c8c7c5039aff369f8245dc450 (patch) | |
tree | 409889967778f86d619985e14473be76e47b31a0 /tmux.h | |
parent | f155316be7f24d76dd8fe6eb3dd34c5cf0aae86d (diff) | |
download | rtmux-7bdb675469336e1c8c7c5039aff369f8245dc450.tar.gz rtmux-7bdb675469336e1c8c7c5039aff369f8245dc450.tar.bz2 rtmux-7bdb675469336e1c8c7c5039aff369f8245dc450.zip |
GRID_DEBUG is no longer needed.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -663,16 +663,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 |