summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Molenda <jsm@bugshack.cygnus.com>1999-08-16 19:57:16 +0000
committerJason Molenda <jsm@bugshack.cygnus.com>1999-08-16 19:57:16 +0000
commita57cd7e755da6d970fc98170b10f6cf671584697 (patch)
treeae6be5f70257b37ebca0af9ddc0e7f922ab10a63
parentedb3165470a3a09c5963702d9b2f6fea9b59775d (diff)
downloadgdb-a57cd7e755da6d970fc98170b10f6cf671584697.tar.gz
import gdb-1999-08-16 snapshotgdb-1999-08-16
-rw-r--r--readline/doc/hsuser.texinfo4
-rw-r--r--readline/rltty.c4
-rw-r--r--readline/shell.c1
3 files changed, 7 insertions, 2 deletions
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>