changeset 5452:5a70e4162b25

[project @ 2005-09-16 15:11:12 by jwe]
author jwe
date Fri, 16 Sep 2005 15:11:25 +0000
parents ed08548b9054
children 89f5979e8552
files liboctave/cmd-edit.cc
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/cmd-edit.cc	Thu Sep 15 19:52:50 2005 +0000
+++ b/liboctave/cmd-edit.cc	Fri Sep 16 15:11:25 2005 +0000
@@ -163,13 +163,13 @@
 
   do_blink_matching_paren (true);
 
-  /* Bind operate-and-get-next. */
+  // Bind operate-and-get-next.
 
   octave_rl_add_defun ("operate-and-get-next",
 		       gnu_readline::operate_and_get_next,
 		       octave_rl_ctrl ('O'));
 
-  /* And the history search functions. */
+  // And the history search functions.
 
   octave_rl_add_defun ("history-search-backward",
 		       gnu_readline::history_search_backward,
@@ -199,11 +199,11 @@
 
   const char *p = prompt.c_str ();
 
-  // BEGIN_INTERRUPT_IMMEDIATELY_IN_FOREIGN_CODE;
+  BEGIN_INTERRUPT_IMMEDIATELY_IN_FOREIGN_CODE;
 
   line = ::octave_rl_readline (p);
 
-  // END_INTERRUPT_IMMEDIATELY_IN_FOREIGN_CODE;
+  END_INTERRUPT_IMMEDIATELY_IN_FOREIGN_CODE;
 
   if (line)
     {