Lines Matching refs:el
1267 prompt(EditLine *el) in prompt() argument
1296 EditLine *el = NULL; in interactive_loop() local
1301 if ((il = el = el_init(__progname, stdin, stdout, stderr)) == NULL) in interactive_loop()
1306 el_set(el, EL_HIST, history, hl); in interactive_loop()
1308 el_set(el, EL_PROMPT, prompt); in interactive_loop()
1309 el_set(el, EL_EDITOR, "emacs"); in interactive_loop()
1310 el_set(el, EL_TERMINAL, NULL); in interactive_loop()
1311 el_set(el, EL_SIGNAL, 1); in interactive_loop()
1312 el_source(el, NULL); in interactive_loop()
1401 if ((line = el_gets(el, &count)) == NULL || count <= 0) { in interactive_loop()
1458 if (el != NULL) in interactive_loop()
1459 el_end(el); in interactive_loop()