summaryrefslogtreecommitdiff
path: root/readline
diff options
context:
space:
mode:
authorJason Molenda <jsm@bugshack.cygnus.com>1999-08-16 19:57:19 +0000
committerJason Molenda <jsm@bugshack.cygnus.com>1999-08-16 19:57:19 +0000
commitd450852cb3f7b4919eaf956ea0c34a5caeecee5e (patch)
tree335d04cc9cfc9029551b9176ca163584d4d54f71 /readline
parent39e2b1a6657bcf6f1ae2b616b447c9dab88917ef (diff)
downloadgdb-d450852cb3f7b4919eaf956ea0c34a5caeecee5e.tar.gz
import gdb-1999-08-16 snapshot
Diffstat (limited to 'readline')
-rw-r--r--readline/ChangeLog.Cygnus18
-rw-r--r--readline/doc/ChangeLog8
-rw-r--r--readline/doc/hsuser.texinfo4
-rw-r--r--readline/rltty.c4
-rw-r--r--readline/shell.c1
5 files changed, 33 insertions, 2 deletions
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 <ezannoni@kwikemart.cygnus.com>
+
+ From Philippe De Muyter <phdm@macqel.be>
+ * 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 <ezannoni@kwikemart.cygnus.com>
+
+ * 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 <ezannoni@kwikemart.cygnus.com>
* 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 <ezannoni@kwikemart.cygnus.com>
+
+ * 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 <ezannoni@kwikemart.cygnus.com>
* 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 <sys/types.h>
+#include <stdio.h>
#if defined (HAVE_UNISTD_H)
# include <unistd.h>