summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-06-05 21:29:20 -0700
committerKaz Kylheku <kaz@kylheku.com>2016-06-05 21:29:20 -0700
commit82ec7ca8ee8a662f267470086cd11a2341a8a1b3 (patch)
tree977176f52cf2c46f1d269957e6dabaa90946b07d
parentf332b92bba60e25e5031d899711710e3311a8a30 (diff)
downloadtxr-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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib.c b/lib.c
index 8326d34a..a547973c 100644
--- a/lib.c
+++ b/lib.c
@@ -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, ...)