changeset 3481:d964028659fb

[project @ 2000-01-26 06:35:38 by jwe]
author jwe
date Wed, 26 Jan 2000 06:35:39 +0000
parents 45742a3b1f7c
children e461b8ed7c4d
files readline/ChangeLog readline/acconfig.h readline/config.h.in readline/rltty.c src/octave.cc
diffstat 5 files changed, 9 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/readline/ChangeLog	Wed Jan 26 06:16:44 2000 +0000
+++ b/readline/ChangeLog	Wed Jan 26 06:35:39 2000 +0000
@@ -1,3 +1,8 @@
+2000-01-26  John W. Eaton  <jwe@bevo.che.wisc.edu>
+
+	* acconfig.h: Use #undef GWINSZ_IN_SYS_IOCTL, not
+	TIOCGWINSZ_IN_SYS_IOCTL to match AC_DEFINE in aclocal.m4.
+
 1999-10-13  John W. Eaton  <jwe@bevo.che.wisc.edu>
 
 	* terminal.c (rl_resize_terminal): Import from readline 4.0.
--- a/readline/acconfig.h	Wed Jan 26 06:16:44 2000 +0000
+++ b/readline/acconfig.h	Wed Jan 26 06:35:39 2000 +0000
@@ -17,7 +17,7 @@
 /* Definitions pulled in from aclocal.m4. */
 #undef VOID_SIGHANDLER
 
-#undef TIOCGWINSZ_IN_SYS_IOCTL
+#undef GWINSZ_IN_SYS_IOCTL
 
 #undef TIOCSTAT_IN_SYS_IOCTL
 
--- a/readline/config.h.in	Wed Jan 26 06:16:44 2000 +0000
+++ b/readline/config.h.in	Wed Jan 26 06:35:39 2000 +0000
@@ -12,6 +12,8 @@
 /* Definitions pulled in from aclocal.m4. */
 #undef VOID_SIGHANDLER
 
+#undef GWINSZ_IN_SYS_IOCTL
+
 #undef TIOCSTAT_IN_SYS_IOCTL
 
 #undef HAVE_GETPW_DECLS
--- a/readline/rltty.c	Wed Jan 26 06:16:44 2000 +0000
+++ b/readline/rltty.c	Wed Jan 26 06:35:39 2000 +0000
@@ -154,11 +154,7 @@
   struct winsize w;
 
   if (ioctl (tty, TIOCGWINSZ, &w) == 0)
-    {
-      fprintf (stderr, "setting window size: %d x %d\n", w.ws_row, w.ws_col);
-
-      (void) ioctl (tty, TIOCSWINSZ, &w);
-    }
+    (void) ioctl (tty, TIOCSWINSZ, &w);
 }
 #else /* SHELL || !TIOCGWINSZ */
 #  define set_winsize(tty)
@@ -537,8 +533,6 @@
 
   tty = fileno (rl_instream);
 
-  fprintf (stderr, "rl_prep_terminal\n");
-
   if (get_tty_settings (tty, &tio) < 0)
     {
       release_sigint ();
--- a/src/octave.cc	Wed Jan 26 06:16:44 2000 +0000
+++ b/src/octave.cc	Wed Jan 26 06:35:39 2000 +0000
@@ -373,7 +373,6 @@
 
   initialize_pathsearch ();
 
-  cerr << "installing octave signal handlers\n";
   install_signal_handlers ();
 
   initialize_file_io ();