From dbcd584e8c150d81a74dba63c32ff0d31da89dbb Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Wed, 8 Apr 2020 16:55:57 -0400 Subject: Add compat.h dependency to Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index b9b2152..a22cd7c 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ all: ${BINS} imbox: ${OBJS} ${CC} ${LDFLAGS} ${OBJS} ${LDLIBS} -o $@ -${OBJS}: imap.h +${OBJS}: compat.h imap.h clean: rm -f ${BINS} ${OBJS} -- cgit 1.4.1 fbae6701fe1d92061fef58a3'/> IRC client
summary refs log tree commit diff
path: root/ui.c (unfollow)
Commit message (Collapse)Author
2018-08-05Use 16 colors if availableJune McEnroe
Fall back to using bold if there are only 8 colors. This also allowed bright background colors in 16-color terminals. I must port this system to torus. I'll be able to remove the awful termcap patch hack.
2018-08-05Limit parsed colors to number of mIRC colorsJune McEnroe
Oh boy that's embarrassing.
2018-08-04Show source link on exitJune McEnroe
2018-08-04Implement line editing, scrollingJune McEnroe
Don't really have a way to implement the M-* keys, and currently missing C-w.
2018-08-04Handle /topicJune McEnroe