From aa137f0381b732a055db31361f68f82d31467b9a Mon Sep 17 00:00:00 2001 From: Daniel Loffgren Date: Thu, 21 Jul 2016 09:00:57 +0000 Subject: [PATCH] Added the missing trailing NULL for the EL_BIND git-svn-id: svn+ssh://svn.phoenixbox.net/svn/apple1/trunk@96 64f78de7-aa59-e511-a0e8-0002a5492df0 --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 6b19bbe..617c7c1 100644 --- a/src/main.c +++ b/src/main.c @@ -147,7 +147,7 @@ int main(int argc, const char * argv[]) el_set(el, EL_EDITOR, "emacs"); el_set(el, EL_HIST, history, hist); el_set(el, EL_ADDFN, "tab-complete", "Tab completion", v6502_completeDebuggerCommand); - el_set(el, EL_BIND, "\t", "tab-complete"); + el_set(el, EL_BIND, "\t", "tab-complete", NULL); char *command = NULL; while (!feof(stdin)) {