Sun Apr  2 15:57:26 EEST 2006  Ville Laurikari <vl@iki.fi>
  * Updated for 0.7.3.

    M ./NEWS +4

Sun Apr  2 15:44:25 EEST 2006  Ville Laurikari <vl@iki.fi>
  * Fixed some remaining GPL references to LGPL.

    M ./README -4 +4
    M ./lib/tre-compile.c -1 +1
    M ./lib/tre-stack.c -1 +1
    M ./po/fi.po -1 +1
    M ./po/tre.pot -1 +1
    M ./python/setup.py.in -11 +13
    M ./tre.spec.in -1 +1

Sun Apr  2 15:26:32 EEST 2006  Ville Laurikari <vl@iki.fi>
  * ChangeLog is now generated by darcs.

    R ./ChangeLog
    A ./ChangeLog.old
    M ./utils/autogen.sh +3

Sun Apr  2 15:22:20 EEST 2006  Ville Laurikari <vl@iki.fi>
  * Fixed DOS newlines to UNIX newlines.

    M ./python/example.py -13 +13

Sun Apr  2 15:20:27 EEST 2006  Ville Laurikari <vl@iki.fi>
  * The Python language bindings are now LGPL as well.
  I received permission from Nikolai Saoukh, the author of the Python
  language bindings for TRE, to change the license to anything I like.

    M ./LICENSE -4
    R ./python/COPYING
    M ./python/tre-python.c -10 +11

Sun Apr  2 14:19:03 EEST 2006  Ville Laurikari <vl@iki.fi>
  * Test script now waits for jobs to finish.

    M ./tests/build-on-hosts.sh -3 +5
    M ./tests/build-tests.sh -1 +3

Sun Apr  2 14:18:18 EEST 2006  Ville Laurikari <vl@iki.fi>
  * Updated localization files.

    M ./po/fi.po -35 +35
    M ./po/tre.pot -32 +32

Sun Apr  2 14:17:07 EEST 2006  Ville Laurikari <vl@iki.fi>
  * Added missing flags when TRE_USE_SYSTEM_REGEX_H is defined.

    M ./lib/regex.h +2

Sun Apr  2 13:34:28 EEST 2006  Ville Laurikari <vl@iki.fi>
  * Updated test hosts.

    A ./tests/build-hosts/earthquake
    R ./tests/build-hosts/hutcs

Sun Apr  2 11:44:06 EEST 2006  Ville Laurikari <vl@iki.fi>
  * Changed license from GPL to LGPL.
  Due to numerous requests, and the absence of the not-so-expected
  onslaught of proprietary software turning free because of the TRE
  license, I've decided to change the license to LGPL.

    M ./LICENSE -5 +18
    M ./NEWS +5
    M ./configure.ac -1 +1
    M ./lib/regcomp.c -10 +11
    M ./lib/regerror.c -10 +11
    M ./lib/regex.h -10 +11
    M ./lib/regexec.c -10 +11
    M ./lib/tre-ast.c -10 +11
    M ./lib/tre-ast.h -10 +12
    M ./lib/tre-compile.c -10 +11
    M ./lib/tre-compile.h -10 +12
    M ./lib/tre-filter.c -10 +11
    M ./lib/tre-internal.h -10 +11
    M ./lib/tre-match-approx.c -10 +11
    M ./lib/tre-match-backtrack.c -10 +11
    M ./lib/tre-match-parallel.c -10 +11
    M ./lib/tre-match-utils.h -11 +11
    M ./lib/tre-mem.c -10 +11
    M ./lib/tre-mem.h -10 +11
    M ./lib/tre-parse.c -10 +12
    M ./lib/tre-parse.h -10 +12
    M ./lib/tre-stack.c -10 +12
    M ./lib/tre-stack.h -10 +12
    M ./lib/xmalloc.c -11 +12
    M ./lib/xmalloc.h -11 +12
    A ./python/COPYING
    M ./src/agrep.c -11 +12
    M ./tests/bench.c -10 +11
    M ./tests/randtest.c -10 +11
    M ./tests/retest.c -10 +11
    M ./tests/test-str-source.c -10 +11

Mon Mar 28 22:33:39 EEST 2005  Ville Laurikari <vl@iki.fi>
  * Added support for "(?#text)" comment syntax.
  Thanks to Dominick Meglio <codemstr@ptd.net> for contributing this
  patch.

    M ./lib/tre-parse.c +17
    M ./tests/retest.c +4

Mon Mar 28 22:24:45 EEST 2005  Ville Laurikari <vl@iki.fi>
  * Added REG_UNGREEDY cflag and 'U' pattern modifier.
  The REG_UNGREEDY regex compilation flag reverses the normal situation
  where repetition operators are greedy unless a '?' is appended.  With
  the REG_UNGREEDY flag in effect, repetition operators are non-greedy
  unless a '?' is appended.
  
  The 'U' pattern modifier, as in "(?U)" and "(?U:pattern)", turns on
  the REG_UNGREEDY flag for a selected part of the regex.
  
  Thanks to Dominick Meglio <codemstr@ptd.net> for contributing the
  original version of this patch.

    M ./lib/regex.h -1 +2
    M ./lib/tre-parse.c -7 +26
    M ./tests/retest.c -2 +11

Mon Mar 28 18:31:22 EEST 2005  Ville Laurikari <vl@iki.fi>
  * Added comments.

    M ./configure.ac -5 +23

Mon Aug 22 09:55:18 EEST 2005  Ville Laurikari <vl@iki.fi>
  * Added "record-number" alias for "line-number" option.

    M ./src/agrep.c +1

Mon Aug 22 09:50:43 EEST 2005  Ville Laurikari <vl@iki.fi>
  * Added --show-position command line flag.
  The flag causes the match start and end positions to be printed for
  each output record.  The start and end positions are separated by a
  dash.  For example:
  
    $ agrep --help | agrep --show-position -2 descrpition --show-cost
    2:26-37:See tre(7) for a complete description.
  

    M ./src/agrep.c -3 +11

Mon Mar 28 22:06:07 EEST 2005  Ville Laurikari <vl@iki.fi>
  * Updated `autogen.sh' to use autopoint to set up gettext.

    M ./configure.ac +1
    M ./utils/autogen.sh +6

Mon Mar 28 22:02:45 EEST 2005  Ville Laurikari <vl@iki.fi>
  * Removed `config.h.in' from repository.
  This file is automatically generated by autoconf, no need to keep this
  in the repository.

    R ./config.h.in

Mon Mar 28 21:56:03 EEST 2005  Ville Laurikari <vl@iki.fi>
  * Fix bug in parsing \E.
  There was a bug in parsing the part of a regexp that comes after \E.
  For example, "\Qabc\E.*" was parsed to be equivalent to  "abc." (or
  "abc.(?:)*" to be exact), which is obviously incorrect.
  
  Thanks to Bill Yerazunis <wsy@merl.com> for reporting the bug.

    M ./lib/tre-parse.c -2 +2
    M ./tests/retest.c -1 +6

Mon Mar 28 19:41:19 EEST 2005  Ville Laurikari <vl@iki.fi>
  * Indented EXTRA_DIST lists consistently.

    M ./Makefile.am -1 +2
    M ./doc/Makefile.am -1 +5
    M ./m4/Makefile.am -6 +6
    M ./utils/Makefile.am -1 +4

Mon Mar 28 18:15:01 EEST 2005  Ville Laurikari <vl@iki.fi>
  * Import from TRE 0.7.2 CVS tree.
  I'm starting to use darcs for revision control in the TRE project.
  This patch contains the CVS tree of the 0.7.2 release of TRE (more or
  less).
  
  Previously I was using CVS which was OK, but with darcs I get
  rid of some problems I've been having with CVS:
  
    - Renaming or moving files and directories does not work in CVS.
  
    - With CVS it's difficult to commit patches as a logical whole,
      because there's no way to choose which parts of changes to a
      file I want to include in a change.
  
    - With CVS, I used to use a ChangeLog file and leave all CVS
      commit logs empty.  I've now realized that was stupid.  I
      intend to get rid of the ChangeLog file in favor of patch
      summary logs generated by darcs.
  
    - Making a CVS repository public is a big hassle compared to
      doing the same with a darcs repository.

    A ./AUTHORS
    A ./ChangeLog
    A ./LICENSE
    A ./Makefile.am
    A ./NEWS
    A ./README
    A ./THANKS
    A ./TODO
    A ./config.h.in
    A ./configure.ac
    A ./doc/
    A ./doc/Makefile.am
    A ./doc/agrep.1.in
    A ./doc/default.css
    A ./doc/tre-api.html
    A ./doc/tre-syntax.html
    A ./lib/
    A ./lib/Makefile.am
    A ./lib/README
    A ./lib/regcomp.c
    A ./lib/regerror.c
    A ./lib/regex.h
    A ./lib/regexec.c
    A ./lib/tre-ast.c
    A ./lib/tre-ast.h
    A ./lib/tre-compile.c
    A ./lib/tre-compile.h
    A ./lib/tre-config.h.in
    A ./lib/tre-filter.c
    A ./lib/tre-filter.h
    A ./lib/tre-internal.h
    A ./lib/tre-match-approx.c
    A ./lib/tre-match-backtrack.c
    A ./lib/tre-match-parallel.c
    A ./lib/tre-match-utils.h
    A ./lib/tre-mem.c
    A ./lib/tre-mem.h
    A ./lib/tre-parse.c
    A ./lib/tre-parse.h
    A ./lib/tre-stack.c
    A ./lib/tre-stack.h
    A ./lib/xmalloc.c
    A ./lib/xmalloc.h
    A ./m4/
    A ./m4/Makefile.am
    A ./m4/ac_libtool_tags.m4
    A ./m4/ax_check_funcs_comp.m4
    A ./m4/ax_check_sign.m4
    A ./m4/ax_decl_wchar_max.m4
    A ./m4/tre_prog_cc_optimizations.m4
    A ./m4/vl_prog_cc_warnings.m4
    A ./po/
    A ./po/LINGUAS
    A ./po/Makevars
    A ./po/POTFILES.in
    A ./po/fi.po
    A ./po/tre.pot
    A ./python/
    A ./python/example.py
    A ./python/setup.py.in
    A ./python/tre-python.c
    A ./src/
    A ./src/Makefile.am
    A ./src/agrep.c
    A ./tests/
    A ./tests/Makefile.am
    A ./tests/bench.c
    A ./tests/build-hosts/
    A ./tests/build-hosts/ahma
    A ./tests/build-hosts/hemuli
    A ./tests/build-hosts/hutcs
    A ./tests/build-hosts/jolly
    A ./tests/build-on-hosts.sh
    A ./tests/build-run.sh
    A ./tests/build-tests.sh
    A ./tests/randtest.c
    A ./tests/retest.c
    A ./tests/test-str-source.c
    A ./tre.pc.in
    A ./tre.spec.in
    A ./utils/
    A ./utils/Makefile.am
    A ./utils/autogen.sh
    A ./utils/build-release.sh
    A ./utils/build-rpm.sh
    A ./utils/build-sources.sh
    A ./utils/replace-vars.sh
    A ./win32/
    A ./win32/config.h
    A ./win32/retest.dsp
    A ./win32/tre-config.h.in
    A ./win32/tre.def
    A ./win32/tre.dsp
    A ./win32/tre.dsw
