X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=blobdiff_plain;f=misc.c;h=a0f6c36140ba169fc1d50ee8ce29fc0921306213;hp=f2d674248d065951400bad163468a8c1d09f673c;hb=bb2b8e0fcad10cf896acd1bfd42267c40f4f21ea;hpb=83780631983a2eb5dc0e6d8789bedb67de985870 diff --git a/misc.c b/misc.c index f2d6742..a0f6c36 100644 --- a/misc.c +++ b/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);