From 7bdb675469336e1c8c7c5039aff369f8245dc450 Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 31 Mar 2014 21:42:27 +0000 Subject: GRID_DEBUG is no longer needed. --- tmux.h | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 9990ccfe..df7b5d16 100644 --- a/tmux.h +++ b/tmux.h @@ -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 -- cgit