From b2ad77d0be34b7cbfd5dd9dcc55c3c93811edbc6 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Mon, 9 Apr 2018 01:00:54 -0400 Subject: Replace #define with enum or const where possible --- client.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'client.c') diff --git a/client.c b/client.c index 8b4732e..bddf20f 100644 --- a/client.c +++ b/client.c @@ -29,8 +29,10 @@ #include "torus.h" -#define ESC (0x1B) -#define DEL (0x7F) +enum { + ESC = 0x1B, + DEL = 0x7F, +}; #define CH_COLOR(ch) (ch & A_BOLD ? COLOR_BRIGHT | ch >> 8 & 0xFF : ch >> 8 & 0xFF) -- cgit 1.4.1