changeset 6521:a07846d734db

[project @ 2007-04-12 15:26:38 by jwe]
author jwe
date Thu, 12 Apr 2007 15:26:38 +0000
parents 260a54f29e9a
children 475c83367a0e
files scripts/ChangeLog scripts/miscellaneous/menu.m
diffstat 2 files changed, 7 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Wed Apr 11 21:29:32 2007 +0000
+++ b/scripts/ChangeLog	Thu Apr 12 15:26:38 2007 +0000
@@ -1,3 +1,7 @@
+2007-04-12  Carlo de Falco  <kingcrimson@tiscali.it>
+
+	* miscellaneous/menu.m: Adapt to page_screen_output as a function.
+
 2007-04-11  John W. Eaton  <jwe@octave.org>
 
 	* miscellaneous/not.m: Delete.
--- a/scripts/miscellaneous/menu.m	Wed Apr 11 21:29:32 2007 +0000
+++ b/scripts/miscellaneous/menu.m	Thu Apr 12 15:26:38 2007 +0000
@@ -43,11 +43,11 @@
   ## Don't send the menu through the pager since doing that can cause
   ## major confusion.
 
-  save_page_screen_output = page_screen_output;
+  save_page_screen_output = page_screen_output ();
 
   unwind_protect
 
-    page_screen_output = 0;
+    page_screen_output (0);
 
     if (! isempty (t))
       disp (t);
@@ -73,7 +73,7 @@
 
   unwind_protect_cleanup
 
-    page_screen_output = save_page_screen_output;
+    page_screen_output (save_page_screen_output);
 
   end_unwind_protect