From ab1a633e67d04bb36b2b00461e1a72a786bab917 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Thu, 30 Jul 2015 07:02:46 -0700 Subject: * filter.c, utf8.c: Fix bad indentation introduced in whitespace fix on 2013-08-09. --- ChangeLog | 5 +++++ filter.c | 2 +- utf8.c | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6c14d7da..d4c74f68 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2015-07-30 Kaz Kylheku + + * filter.c, utf8.c: Fix bad indentation introduced in whitespace + fix on 2013-08-09. + 2015-07-30 Kaz Kylheku Correction to COBJ initialization pattern. 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) -- cgit v1.2.3