summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-11-19 10:24:50 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-11-19 10:24:50 -0800
commitf5b18ec696f2c176a2f9f49a3c3a5e158291d00f (patch)
tree6474cb799e78df8dfe063cac06e6d32b5cde97c3
parent6fc929b1384a97dd7922af731667dd2539819a49 (diff)
downloadtxr-f5b18ec696f2c176a2f9f49a3c3a5e158291d00f.tar.gz
txr-f5b18ec696f2c176a2f9f49a3c3a5e158291d00f.tar.bz2
txr-f5b18ec696f2c176a2f9f49a3c3a5e158291d00f.zip
Version 024.txr-024
-rw-r--r--ChangeLog13
-rw-r--r--txr.12
-rw-r--r--txr.c2
3 files changed, 15 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 4c74ebef..976d60f3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,18 @@
2009-11-19 Kaz Kylheku <kkylheku@gmail.com>
+ Version 024
+
+ Fixed show-stopper breakage in parse error diagnostic function.
+
+ Fixed bug introduced back in 015: collects that don't yield
+ any variable bindings being wrongly treated as failed.
+
+ * txr.c (version): Bumped to 024.
+
+ * txr.1: Bumped version to 024.
+
+2009-11-19 Kaz Kylheku <kkylheku@gmail.com>
+
Use unsigned char * as allocator return value.
* lib.c (chk_malloc, chk_realloc): Return unsigned char *.
diff --git a/txr.1 b/txr.1
index c567097f..e9c1fabb 100644
--- a/txr.1
+++ b/txr.1
@@ -21,7 +21,7 @@
.\"IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
.\"WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
-.TH txr 1 2009-11-18 "txr v. 023" "Text Extraction Utility"
+.TH txr 1 2009-11-19 "txr v. 024" "Text Extraction Utility"
.SH NAME
txr \- text extractor
.SH SYNOPSIS
diff --git a/txr.c b/txr.c
index 069059fd..7ce272d1 100644
--- a/txr.c
+++ b/txr.c
@@ -42,7 +42,7 @@
#include "utf8.h"
#include "txr.h"
-const wchar_t *version = L"023";
+const wchar_t *version = L"024";
const wchar_t *progname = L"txr";
const wchar_t *spec_file = L"stdin";
obj_t *spec_file_str;