summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--filter.c2
-rw-r--r--utf8.c2
3 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 6c14d7da..d4c74f68 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2015-07-30 Kaz Kylheku <kaz@kylheku.com>
+ * filter.c, utf8.c: Fix bad indentation introduced in whitespace
+ fix on 2013-08-09.
+
+2015-07-30 Kaz Kylheku <kaz@kylheku.com>
+
Correction to COBJ initialization pattern.
In fact, the previosuly documented process is not correct and still
diff --git a/filter.c b/filter.c
index 51f45f90..1a4a2f76 100644
--- a/filter.c
+++ b/filter.c
@@ -162,7 +162,7 @@ val get_filter(val spec)
val filter_list = mapcar(func_n1(get_filter), spec);
if (memqual(nil, filter_list))
- return nil;
+ return nil;
return curry_12_2(func_n2(compound_filter), filter_list);
}
diff --git a/utf8.c b/utf8.c
index 03aefa2e..a45c1b94 100644
--- a/utf8.c
+++ b/utf8.c
@@ -147,7 +147,7 @@ size_t utf8_from_uc(wchar_t *wdst, const unsigned char *src)
size_t utf8_from(wchar_t *wdst, const char *src)
{
- return utf8_from_uc(wdst, coerce(const unsigned char *, src));
+ return utf8_from_uc(wdst, coerce(const unsigned char *, src));
}
size_t utf8_to_uc(unsigned char *dst, const wchar_t *wsrc)