diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-06-05 21:29:20 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-06-05 21:29:20 -0700 |
commit | 82ec7ca8ee8a662f267470086cd11a2341a8a1b3 (patch) | |
tree | 977176f52cf2c46f1d269957e6dabaa90946b07d | |
parent | f332b92bba60e25e5031d899711710e3311a8a30 (diff) | |
download | txr-82ec7ca8ee8a662f267470086cd11a2341a8a1b3.tar.gz txr-82ec7ca8ee8a662f267470086cd11a2341a8a1b3.tar.bz2 txr-82ec7ca8ee8a662f267470086cd11a2341a8a1b3.zip |
Fix error messages in internal function scat.
* lib.c (vscat): Replace "cat-str" and "vcat"
with correct name "scat".
-rw-r--r-- | lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3687,7 +3687,7 @@ static val vscat(val sep, va_list vl1, va_list vl2) continue; } - uw_throwf(error_s, lit("cat-str: ~s is not a character or string"), + uw_throwf(error_s, lit("scat: ~s is not a character or string"), item, nao); } @@ -3715,7 +3715,7 @@ static val vscat(val sep, va_list vl1, va_list vl2) return string_own(str); oflow: - uw_throwf(error_s, lit("vcat: string length overflow"), nao); + uw_throwf(error_s, lit("scat: string length overflow"), nao); } val scat(val sep, ...) |