diff options
-rw-r--r-- | util/ChangeLog | 6 | ||||
-rw-r--r-- | util/ttyio.c | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/util/ChangeLog b/util/ChangeLog index 72a7f5d5f..e8585ac27 100644 --- a/util/ChangeLog +++ b/util/ChangeLog @@ -1,3 +1,7 @@ +2000-03-02 15:51:04 Werner Koch ([email protected]) + + * ttyio.c (tty_print_utf8_string): Oops. + Thu Mar 2 15:37:46 CET 2000 Werner Koch <[email protected]> * ttyio.c (tty_print_utf8_string2): New to allow a max output size. @@ -118,7 +122,7 @@ Sat Jun 26 12:15:59 CEST 1999 Werner Koch <[email protected]> Fri Jun 18 00:18:02 CEST 1999 Michael Roth <[email protected]> * iobuf.c: file_filter() Detection of EOF on terminals - improved/fixed (see Bug #21). + improved/fixed (see Bug #21). Mon Jun 14 21:18:54 CEST 1999 Michael Roth <[email protected]> diff --git a/util/ttyio.c b/util/ttyio.c index e2c1f8496..8d0824aad 100644 --- a/util/ttyio.c +++ b/util/ttyio.c @@ -269,7 +269,7 @@ tty_print_utf8_string2( byte *p, size_t n, size_t max_n ) void tty_print_utf8_string( byte *p, size_t n ) { - tty_print_utf8_string( p, n, n ) + tty_print_utf8_string2( p, n, n ); } |