diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2014-03-07 15:51:27 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2014-03-07 15:51:27 +0000 |
commit | c5a30513edc6f108b6387ee9cf6f1cb9dc7a674c (patch) | |
tree | bd129067581a1aa00795f99423eec5704112b544 /tmux.h | |
parent | ebe7bd7c8b4f3d703064b3d8b2b5ad8dd01e9e62 (diff) | |
download | rtmux-c5a30513edc6f108b6387ee9cf6f1cb9dc7a674c.tar.gz rtmux-c5a30513edc6f108b6387ee9cf6f1cb9dc7a674c.tar.bz2 rtmux-c5a30513edc6f108b6387ee9cf6f1cb9dc7a674c.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
@@ -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 |