Support execution of command script arguments.
This commit is contained in:
parent
8378063198
commit
bb2b8e0fca
7 changed files with 80 additions and 9 deletions
4
misc.c
4
misc.c
|
@ -211,7 +211,7 @@ static int word_count(char* str)
|
|||
static char* get_input(void)
|
||||
{
|
||||
// Set up the prompt
|
||||
char input_prompt[] = "> ";
|
||||
char input_prompt[] = PROMPT;
|
||||
if (!settings.prompt)
|
||||
input_prompt[0] = '\0';
|
||||
|
||||
|
@ -220,7 +220,7 @@ static char* get_input(void)
|
|||
|
||||
char* input;
|
||||
while (true) {
|
||||
input = readline(input_prompt);
|
||||
input = myreadline(input_prompt);
|
||||
|
||||
if (input == NULL) // Got EOF; return with it.
|
||||
return (input);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue