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
This commit is contained in:
Daniel Loffgren 2016-07-21 09:00:57 +00:00
parent c5e7f95885
commit aa137f0381
1 changed files with 1 additions and 1 deletions

View File

@ -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)) {