units(1): parse config file after setting defaults
Parse the config file after setting the defaults to permit the user to change things (e.g., editing mode)
This commit is contained in:
parent
647be2c3a9
commit
cada55282a
@ -724,11 +724,11 @@ main(int argc, char **argv)
|
|||||||
|
|
||||||
inhistory = history_init();
|
inhistory = history_init();
|
||||||
el = el_init(argv[0], stdin, stdout, stderr);
|
el = el_init(argv[0], stdin, stdout, stderr);
|
||||||
el_source(el, NULL);
|
|
||||||
el_set(el, EL_PROMPT, &prompt);
|
el_set(el, EL_PROMPT, &prompt);
|
||||||
el_set(el, EL_EDITOR, "emacs");
|
el_set(el, EL_EDITOR, "emacs");
|
||||||
el_set(el, EL_SIGNAL, 1);
|
el_set(el, EL_SIGNAL, 1);
|
||||||
el_set(el, EL_HIST, history, inhistory);
|
el_set(el, EL_HIST, history, inhistory);
|
||||||
|
el_source(el, NULL);
|
||||||
history(inhistory, &ev, H_SETSIZE, 800);
|
history(inhistory, &ev, H_SETSIZE, 800);
|
||||||
if (inhistory == 0)
|
if (inhistory == 0)
|
||||||
err(1, "Could not initalize history");
|
err(1, "Could not initalize history");
|
||||||
|
Loading…
Reference in New Issue
Block a user