From 00b1b26b59720e7c2c5341cf947219164a37bfae Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Thu, 7 Jun 2012 16:43:35 -0400 Subject: [PATCH] rm unused macro (CONCAT2) --- Makefile | 1 + termite.c | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5cdb743..a82e2e3 100644 --- a/Makefile +++ b/Makefile @@ -14,6 +14,7 @@ CFLAGS += -std=c99 -O3 \ -Wconversion \ -Wc++-compat \ -Wbad-function-cast \ + -Wunused-macros \ $(shell pkg-config --cflags ${GTK} ${VTE}) LDFLAGS += -s -Wl,--as-needed $(shell pkg-config --libs ${GTK} ${VTE}) diff --git a/termite.c b/termite.c index 6bffee5..4510a18 100644 --- a/termite.c +++ b/termite.c @@ -9,7 +9,6 @@ #include "config.h" #define CONCAT(X, Y) X ## Y -#define CONCAT2(X, Y) CONCAT(X, Y) #define KEY(X) CONCAT(GDK_KEY_, X) #ifndef __GNUC__