summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-07-30 07:02:46 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-07-30 07:02:46 -0700
commitab1a633e67d04bb36b2b00461e1a72a786bab917 (patch)
tree3106ca0316e5ec5bc64c0456393db98bb985559b
parenta82c88f98b5a176d62e0055ec9f475179acc313f (diff)
downloadtxr-ab1a633e67d04bb36b2b00461e1a72a786bab917.tar.gz
txr-ab1a633e67d04bb36b2b00461e1a72a786bab917.tar.bz2
txr-ab1a633e67d04bb36b2b00461e1a72a786bab917.zip
* filter.c, utf8.c: Fix bad indentation introduced in whitespace
fix on 2013-08-09.
-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)