aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-01-30 19:10:45 +1000
committerDavid Walter Seikel2014-01-30 19:10:45 +1000
commitf161728dc303af18c0756513af37fd2b1d89143d (patch)
tree5799f0decbd8c4347174801c9667347bef13ed71
parentMove handle_keys and friends into it's own file, for the library. (diff)
downloadboxes-f161728dc303af18c0756513af37fd2b1d89143d.zip
boxes-f161728dc303af18c0756513af37fd2b1d89143d.tar.gz
boxes-f161728dc303af18c0756513af37fd2b1d89143d.tar.bz2
boxes-f161728dc303af18c0756513af37fd2b1d89143d.tar.xz
Oops, typo.
-rw-r--r--boxes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/boxes.c b/boxes.c
index bc7b6b9..64d16a9 100644
--- a/boxes.c
+++ b/boxes.c
@@ -922,7 +922,7 @@ void doCommand(view *view, char *command)
922 { 922 {
923 if (strcmp(functions[i].name, command) == 0) 923 if (strcmp(functions[i].name, command) == 0)
924 { 924 {
925 if (functions[i].handler); 925 if (functions[i].handler)
926 { 926 {
927 functions[i].handler(view); 927 functions[i].handler(view);
928 updateLine(view); 928 updateLine(view);