From 95b46b8559ca6951f198bb526f1b5752fcd303f1 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Sat, 4 Aug 2018 13:58:44 -0400 Subject: Define A_ITALIC if not defined System ncurses on macOS doesn't define it. At least not in El Capitan. --- ui.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'ui.c') diff --git a/ui.c b/ui.c index d0f56f0..a8e40d9 100644 --- a/ui.c +++ b/ui.c @@ -29,6 +29,10 @@ #include "chat.h" +#ifndef A_ITALIC +#define A_ITALIC A_NORMAL +#endif + static const int TOPIC_COLS = 512; static const int CHAT_LINES = 100; static const int INPUT_COLS = 512; -- cgit 1.4.1