Implemented the INSERT command.
[pspp-builds.git] / src / ui / terminal / read-line.c
index 2529dee40b29ac1732a9292c9c54e8c95bc196ec..626b06353392f75c6941c6e1ac1e30f6096a0ef2 100644 (file)
@@ -101,12 +101,11 @@ readln_uninitialize (void)
 
 static bool
 read_interactive (struct getl_interface *s,
-                  struct string *line, enum getl_syntax *syntax)
+                  struct string *line)
 {
   struct readln_source *is  =
     (struct readln_source *) s ;
 
-  *syntax = GETL_INTERACTIVE;
   return is->interactive_func (line, prompt_get_style ());
 }