diff options
-rw-r--r-- | ChangeLog | 20 | ||||
-rw-r--r-- | txr.1 | 2 | ||||
-rw-r--r-- | txr.c | 2 |
3 files changed, 22 insertions, 2 deletions
@@ -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 @@ -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 @@ -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; |