Support execution of command script arguments.
[open-adventure.git] / misc.c
diff --git a/misc.c b/misc.c
index f2d674248d065951400bad163468a8c1d09f673c..a0f6c36140ba169fc1d50ee8ce29fc0921306213 100644 (file)
--- 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);