Fix lack of ->name and ->location in DO REPEAT's getl_interface.
[pspp] / src / ui / terminal / read-line.c
index 97427c6c1a59754a1f5ce20cfa31596566b8cb5c..05b6150f85fdd4dd78be4ba2343054bd14e4d258 100644 (file)
@@ -99,11 +99,13 @@ readln_uninitialize (void)
 
 
 static bool
-read_interactive (struct getl_interface *s, struct string *line)
+read_interactive (struct getl_interface *s,
+                  struct string *line, enum getl_syntax *syntax)
 {
   struct readln_source *is  =
     (struct readln_source *) s ;
 
+  *syntax = GETL_INTERACTIVE;
   return is->interactive_func (line, prompt_get_style ());
 }