diff src/input.cc @ 5142:0f9108f298ab

[project @ 2005-02-12 02:29:34 by jwe]
author jwe
date Sat, 12 Feb 2005 02:29:35 +0000
parents 731d16475601
children 85b315ad5f7d
line wrap: on
line diff
--- a/src/input.cc
+++ b/src/input.cc
@@ -165,6 +165,8 @@
 std::string
 gnu_readline (const std::string& s, bool force_readline)
 {
+  OCTAVE_QUIT;
+
   std::string retval;
 
   if (line_editing || force_readline)
@@ -204,6 +206,8 @@
 static std::string
 octave_gets (void)
 {
+  OCTAVE_QUIT;
+
   std::string retval;
 
   Vlast_prompt_time.stamp ();
@@ -254,6 +258,8 @@
 static std::string
 get_user_input (void)
 {
+  OCTAVE_QUIT;
+
   std::string retval;
 
   if (get_input_from_eval_string)