]> granicus.if.org Git - neomutt/commitdiff
remove unused macros
authorRichard Russon <rich@flatcap.org>
Tue, 30 May 2017 15:14:42 +0000 (16:14 +0100)
committerRichard Russon <rich@flatcap.org>
Thu, 1 Jun 2017 19:33:31 +0000 (20:33 +0100)
mutt_curses.h
options.h
pager.c

index def752a0f55ca4fb0794ecbfc8fb2a6ffe6896ec..98814a4895bc421473034527fc4e51c245183a53 100644 (file)
@@ -79,9 +79,6 @@
 #undef lines
 #endif /* lines */
 
-#define CLEARLINE(win, x) mutt_window_clearline(win, x)
-#define CENTERLINE(win, x, y)                                                  \
-  mutt_window_move(win, y, (win->cols - strlen(x)) / 2), addstr(x)
 #define BEEP()                                                                 \
   do                                                                           \
   {                                                                            \
index 3977be152e1695be4914b0a66c8be1ffae920ddc..d5114946289429dd6948ac2ca886501574bbd3c3 100644 (file)
--- a/options.h
+++ b/options.h
@@ -274,7 +274,6 @@ enum
   OPTMAX
 };
 
-#define mutt_bit_alloc(n)     calloc((n + 7) / 8, sizeof(char))
 #define mutt_bit_set(v, n)    v[n / 8] |= (1 << (n % 8))
 #define mutt_bit_unset(v, n)  v[n / 8] &= ~(1 << (n % 8))
 #define mutt_bit_toggle(v, n) v[n / 8] ^= (1 << (n % 8))
diff --git a/pager.c b/pager.c
index 9454bb1f2efb5e1634749804a48ae2b0d96278bd..7e7d6adb077a9d778bbd9efa87f7b2ca1d867f78 100644 (file)
--- a/pager.c
+++ b/pager.c
@@ -63,8 +63,6 @@
 #define ISHEADER(x) ((x) == MT_COLOR_HEADER || (x) == MT_COLOR_HDEFAULT)
 
 #define IsAttach(x) (x && (x)->bdy)
-#define IsRecvAttach(x) (x && (x)->bdy && (x)->fp)
-#define IsSendAttach(x) (x && (x)->bdy && !(x)->fp)
 #define IsMsgAttach(x) (x && (x)->fp && (x)->bdy && (x)->bdy->hdr)
 #define IsHeader(x) (x && (x)->hdr && !(x)->bdy)