summaryrefslogtreecommitdiffstats
path: root/stream.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-07-10 07:11:25 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-07-10 07:11:25 -0700
commit4fa8bbcb93d76caa7e599c60952ee06c45f55bd2 (patch)
treebcb829c67ec15c0b8a3a3beb862fcbe3e7df5ada /stream.c
parent61100e52b5c23df1087e0ecf9233e1ffc2f016ab (diff)
downloadtxr-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream.c b/stream.c
index 0f806401..30c77ee3 100644
--- a/stream.c
+++ b/stream.c
@@ -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;