From a8aa4cfd18220daf169d80705eef13df9cb31747 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Wed, 18 Nov 2009 08:22:42 -0800 Subject: Version 023. --- ChangeLog | 20 ++++++++++++++++++++ txr.1 | 2 +- txr.c | 2 +- 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 + + 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 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; -- cgit v1.2.3