From 960078db40c6d9447e64f5e7cdd608734d7e11b4 Mon Sep 17 00:00:00 2001 From: rlt3 Date: Fri, 2 Aug 2013 14:05:23 -0400 Subject: [PATCH] INSTALL.md should reflect how you build on OSX now. --- testing/toxic/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/toxic/main.c b/testing/toxic/main.c index 26325d95..cdc6dc16 100644 --- a/testing/toxic/main.c +++ b/testing/toxic/main.c @@ -304,10 +304,10 @@ int main(int argc, char* argv[]) { ch = getch(); if(ch == '\t') { w_active = (w_active + 1) % w_num; - } + } else if(ch == KEY_BTAB) { w_active = (w_active + w_num - 1) % w_num; - } + } else if(ch != ERR) { a->onKey(a, ch); }