diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-05-12 23:31:47 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-05-12 23:31:47 -0700 |
commit | 96d189c9008adabdec343217e5b47f3927312d93 (patch) | |
tree | 45e8084f78b4f1d51f45be1073e4cdc4d7244627 /lib.c | |
parent | 295568eae0dea8dec20fe836a399dcffc5a15abb (diff) | |
download | txr-96d189c9008adabdec343217e5b47f3927312d93.tar.gz txr-96d189c9008adabdec343217e5b47f3927312d93.tar.bz2 txr-96d189c9008adabdec343217e5b47f3927312d93.zip |
cygwin: fix broken string catenation.
* lib.c (cat_str, vscat, scat3, join_with): Pass onech
rather than wref(onech) to cat_str_init. Reason being,
cat_str_init calls wref(onech).
Diffstat (limited to 'lib.c')
-rw-r--r-- | lib.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -4985,7 +4985,7 @@ val cat_str(val items, val sep) wchar_t onech[] = wini(" "); - cat_str_init(&cs, sep, wref(onech), self); + cat_str_init(&cs, sep, onech, self); seq_iter_init(self, &item_iter, items); more = seq_get(&item_iter, &item); @@ -5014,7 +5014,7 @@ static val vscat(val sep, va_list vl1, va_list vl2, val self) struct cat_str cs; wchar_t onech[] = wini(" "); - cat_str_init(&cs, sep, wref(onech), self); + cat_str_init(&cs, sep, onech, self); for (item = va_arg(vl1, val); item != nao; item = next) { @@ -5070,7 +5070,7 @@ val scat3(val s1, val sep, val s2) struct cat_str cs; wchar_t onech[] = wini(" "); - cat_str_init(&cs, sep, wref(onech), self); + cat_str_init(&cs, sep, onech, self); cat_str_measure(&cs, s1, 1, self); cat_str_measure(&cs, s2, 0, self); @@ -5092,7 +5092,7 @@ val join_with(val sep, struct args *args) struct cat_str cs; wchar_t onech[] = wini(" "); - cat_str_init(&cs, sep, wref(onech), self); + cat_str_init(&cs, sep, onech, self); for (index = 0, iter = args->list, more = args_more_nozap(args, index, iter); more;) |