From d450852cb3f7b4919eaf956ea0c34a5caeecee5e Mon Sep 17 00:00:00 2001 From: Jason Molenda Date: Mon, 16 Aug 1999 19:57:19 +0000 Subject: import gdb-1999-08-16 snapshot --- readline/ChangeLog.Cygnus | 18 ++++++++++++++++++ readline/doc/ChangeLog | 8 ++++++++ readline/doc/hsuser.texinfo | 4 ++-- readline/rltty.c | 4 ++++ readline/shell.c | 1 + 5 files changed, 33 insertions(+), 2 deletions(-) (limited to 'readline') diff --git a/readline/ChangeLog.Cygnus b/readline/ChangeLog.Cygnus index d4bb265d675..4fe80aac35f 100644 --- a/readline/ChangeLog.Cygnus +++ b/readline/ChangeLog.Cygnus @@ -1,3 +1,21 @@ +1999-08-13 Elena Zannoni + + From Philippe De Muyter + * shell.c (stdio.h): File included, for definition of NULL. + * readline/rltty.c (get_tty_settings): Conditionalize + call to set_winsize on TIOGWINSZ. + +1999-07-30 Elena Zannoni + + * Imported Readline 4.0. Integrated all the Cygnus + local changes since last import. + + New files: rlstdc.h, savestring.c, shlib directory, + doc/manvers.texinfo, examples/rlversion.c, + support/install-shlib, support/shobj-conf. + + Removed files: MANIFEST.doc, doc/inc-hist.texi. + 1999-07-13 Elena Zannoni * acconfig.h: Fix typo: it's GWINSZ_IN_SYS_IOCTL, not diff --git a/readline/doc/ChangeLog b/readline/doc/ChangeLog index 8049c5e6c19..482a3c6ac59 100644 --- a/readline/doc/ChangeLog +++ b/readline/doc/ChangeLog @@ -1,3 +1,11 @@ +1999-08-10 Elena Zannoni + + * hsuser.texinfo (Bash History Builtins): Comment out btindex + commands. + + * inc-hist.texinfo: New file. Same as hsuser.texinfo, but w/o + cross reference to GNU History Manual. + Tue Dec 22 10:07:58 1998 Elena Zannoni * hsuser.texinfo (Bash History Builtins): comment out btindex diff --git a/readline/doc/hsuser.texinfo b/readline/doc/hsuser.texinfo index 76cb63b1eee..7c4582d2ace 100644 --- a/readline/doc/hsuser.texinfo +++ b/readline/doc/hsuser.texinfo @@ -117,7 +117,7 @@ history list and history file. @table @code @item fc -@btindex fc +@comment btindex fc @example @code{fc [-e @var{ename}] [-nlr] [@var{first}] [@var{last}]} @code{fc -s [@var{pat}=@var{rep}] [@var{command}]} @@ -149,7 +149,7 @@ that typing @samp{r cc} runs the last command beginning with @code{cc} and typing @samp{r} re-executes the last command (@pxref{Aliases}). @item history -@btindex history +@comment btindex history @example history [-c] [@var{n}] history [-anrw] [@var{filename}] diff --git a/readline/rltty.c b/readline/rltty.c index a5ef938b5c0..2c7e88679cb 100644 --- a/readline/rltty.c +++ b/readline/rltty.c @@ -189,7 +189,9 @@ get_tty_settings (tty, tiop) int tty; TIOTYPE *tiop; { +#if defined (TIOCGWINSZ) set_winsize (tty); +#endif tiop->flags = tiop->lflag = 0; @@ -388,7 +390,9 @@ get_tty_settings (tty, tiop) { int ioctl_ret; +#if defined (TIOCGWINSZ) set_winsize (tty); +#endif while (1) { diff --git a/readline/shell.c b/readline/shell.c index 091ec08f645..f0ddc897fe4 100644 --- a/readline/shell.c +++ b/readline/shell.c @@ -27,6 +27,7 @@ #endif #include +#include #if defined (HAVE_UNISTD_H) # include -- cgit v1.2.1