diff options
-rw-r--r-- | ChangeLog.csl | 4 | ||||
-rw-r--r-- | readline/rlnotty.c | 9 |
2 files changed, 13 insertions, 0 deletions
diff --git a/ChangeLog.csl b/ChangeLog.csl index e25bae6..e52c85b 100644 --- a/ChangeLog.csl +++ b/ChangeLog.csl @@ -1,3 +1,7 @@ +2005-06-14 Mark Mitchell <mark@codesourcery.com> + + * readline/rlnotty.c (tgoto): New function. + 2005-06-13 Mark Mitchell <mark@codesourcery.com> * gdb/corelow.c (core_open): Use bfd_fopen, not bfd_fdopenr. diff --git a/readline/rlnotty.c b/readline/rlnotty.c index 4bde1c0..dc3d021 100644 --- a/readline/rlnotty.c +++ b/readline/rlnotty.c @@ -51,6 +51,15 @@ tputs (string, nlines, outfun) outfun (*string++); } +char * +tgoto (cap, col, row) + const char *cap; + int col; + int row; +{ + return NULL; +} + int _rl_disable_tty_signals () { |