summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog20
-rw-r--r--txr.12
-rw-r--r--txr.c2
3 files changed, 22 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 60235b61..3098eb75 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,23 @@
+2009-11-18 Kaz Kylheku <kkylheku@gmail.com>
+
+ Version 023
+
+ Minor bugfix.
+
+ Code cleanup. Portability.
+
+ Completely removed dependency on C99 wide character stream functions,
+ and character encoding support from glibc. All UTF-8 encoding
+ and decoding is done by the program itself.
+
+ Removed the use of all GNU extensions and C99 syntax.
+
+ txr now requires a C90 compiler, and POSIX 1003.1 and 1003.2.
+
+ * txr.c (version): Bumped to 023.
+
+ * txr.1: Bumped version to 023.
+
2009-11-17 Kaz Kylheku <kkylheku@gmail.com>
More removal of C99 wide character I/O, and tightening up
diff --git a/txr.1 b/txr.1
index 3e429974..6cd8a61f 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-17 "txr v. 022" "Text Extraction Utility"
+.TH txr 1 2009-11-18 "txr v. 023" "Text Extraction Utility"
.SH NAME
txr \- text extractor
.SH SYNOPSIS
diff --git a/txr.c b/txr.c
index 42f9bd17..069059fd 100644
--- a/txr.c
+++ b/txr.c
@@ -42,7 +42,7 @@
#include "utf8.h"
#include "txr.h"
-const wchar_t *version = L"022";
+const wchar_t *version = L"023";
const wchar_t *progname = L"txr";
const wchar_t *spec_file = L"stdin";
obj_t *spec_file_str;