changeset 2448:00998e1442ae

[project @ 1996-10-30 22:27:18 by jwe]
author jwe
date Wed, 30 Oct 1996 22:27:19 +0000
parents e46137c06781
children 31d5588dbb61
files src/ChangeLog src/pager.cc
diffstat 2 files changed, 5 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
 Wed Oct 30 01:06:19 1996  John W. Eaton  <jwe@bevo.che.wisc.edu>
 
+	* pager.cc (Fmore): Set page_screen_output to 1.0 or 0.0, not
+	"true" or "false".
+
 	* ov-ch-mat.cc, ov-struct.cc, ov-struct.h, pr-output.cc,
 	pt-cmd.cc, pt-const.cc, pt-const.h, pt-fcn.cc, pt-fvc-base.cc,
 	pt-fvc-base.h, pt-fvc.cc, pt-fvc.h, rand.cc, sighandlers.cc,
--- a/src/pager.cc
+++ b/src/pager.cc
@@ -398,9 +398,9 @@
       string arg = argv[1];
 
       if (arg == "on")
-	bind_builtin_variable ("page_screen_output", "true");
+	bind_builtin_variable ("page_screen_output", 1.0);
       else if (arg == "off")
-	bind_builtin_variable ("page_screen_output", "false");
+	bind_builtin_variable ("page_screen_output", 0.0);
       else
 	error ("more: unrecognized argument `%s'", arg.c_str ());
     }