diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-07-10 07:11:25 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-07-10 07:11:25 -0700 |
commit | 4fa8bbcb93d76caa7e599c60952ee06c45f55bd2 (patch) | |
tree | bcb829c67ec15c0b8a3a3beb862fcbe3e7df5ada /stream.c | |
parent | 61100e52b5c23df1087e0ecf9233e1ffc2f016ab (diff) | |
download | txr-4fa8bbcb93d76caa7e599c60952ee06c45f55bd2.tar.gz txr-4fa8bbcb93d76caa7e599c60952ee06c45f55bd2.tar.bz2 txr-4fa8bbcb93d76caa7e599c60952ee06c45f55bd2.zip |
* stream.c (byte_in_unget_byte): Wrong function name in error message.
Diffstat (limited to 'stream.c')
-rw-r--r-- | stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1074,7 +1074,7 @@ static val byte_in_unget_byte(val stream, int byte) if (bi->index == 0) uw_throwf(file_error_s, - lit("unget-char: cannot push past beginning of byte stream"), + lit("unget-byte: cannot push past beginning of byte stream"), nao); bi->buf[--bi->index] = byte; |