commit 3403217621458a98861dbeb8b8e3753eea342193
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Wed Jan 11 23:50:56 2017 +0100

    === Beef 1.0.2 ===

commit 71a17f367852ce5d95f7eec61c1bded03433f7d3
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Wed Jan 11 00:18:40 2017 +0100

    Bump version number

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 99b7339778597f56be0490d57f15e54aed25a8de
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Wed Jan 11 00:11:55 2017 +0100

    Update copyright years

 src/io.c      | 2 +-
 src/io.h      | 2 +-
 src/main.c    | 2 +-
 src/options.c | 2 +-
 src/options.h | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

commit 91213ba779a9bda9dc433e55bf3ed980ca67f178
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Wed Jan 11 00:13:49 2017 +0100

    Update date in man page
    
    The man page itself has not been updated in a while,
    but leaving the date unchanged would give someone
    reading it the impression the program itself has
    not been touched since 2014, which is not the case.

 doc/beef.1.markdown.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 47be26618220271432aaefe85f748b682c409229
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Wed Jan 11 23:46:12 2017 +0100

    Add release dates to NEWS file

 NEWS.markdown | 38 +++++++++++++++++++-------------------
 1 file changed, 19 insertions(+), 19 deletions(-)

commit 9c3cf43a845068f15d2c1050f85daefddfa3e067
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Wed Jan 11 00:09:54 2017 +0100

    Update NEWS.markdown

 NEWS.markdown | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

commit 1924c7ef55d6a25f94ea750cec6aebd48a19bec4
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Tue Jan 10 23:45:29 2017 +0100

    Add workaround for readline < 7.0
    
    Older readline releases don't #include <stdio.h> themselves,
    even though they use datatypes from that file such as FILE*.
    
    To ensure compilation works despite of this bug, include the
    header ourselves for the time being.

 src/io.c   | 3 +++
 src/main.c | 3 +++
 2 files changed, 6 insertions(+)

commit 454002c78581bc3228125e3261e88feaca327891
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sat Dec 31 13:13:31 2016 +0100

    Enable compilation warnings
    
    Always compile with -Wall -Wextra to prevent code quality
    issues from slipping through the cracks during development.

 configure.ac    | 8 ++++++++
 src/Makefile.am | 4 ++++
 2 files changed, 12 insertions(+)

commit 60b29a0e9ab41c7f25eaad64c6af09f1c3d1e169
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sat Dec 31 12:08:36 2016 +0100

    Don't use GSEAL_ENABLE
    
    This compilation flag is not used at all in modern GLib or
    GTK+ versions.

 src/Makefile.am | 1 -
 1 file changed, 1 deletion(-)

commit b676cc1a0fec5b4f62dce6d456489de6e468b3ba
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sun Dec 18 18:13:24 2016 +0100

    Improve readline detection
    
    Some operating systems, such as FreeBSD, install readline under
    /usr/local, which means the compiler needs some help finding
    the header and library files.
    
    The new --with-readline configure option can be used in such
    situations.

 configure.ac    | 33 +++++++++++++++++++++++++++++++++
 src/Makefile.am |  2 ++
 2 files changed, 35 insertions(+)

commit 43ab205d97a150572dbe055f9e22a69d9148bcfe
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sat Dec 3 17:17:21 2016 +0100

    Include <string.h>
    
    Needed for memcpy() and strlen().

 src/io.c | 1 +
 1 file changed, 1 insertion(+)

commit aa08b73542ff80b7837af9a44fae608507a94dad
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sat Dec 3 16:53:51 2016 +0100

    Silence compiler warnings
    
    Remove unused variables, mark unused arguments with
    G_GNUC_UNUSED and initialize empty structs properly.

 src/io.c      |  7 +++----
 src/options.c | 16 ++++++++--------
 2 files changed, 11 insertions(+), 12 deletions(-)

commit 2dd0e426abfd8fcee8d9ea57c04e7461fef24a8f
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Fri Dec 2 19:02:53 2016 +0100

    Cast data when storing it into CattleBuffers
    
    gcc does the casting implicitly for us, but clang doesn't and
    complains about the type mismatch.

 src/io.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 82daff71691973dae4a3a403da57b16cf08265a8
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Fri Dec 2 13:01:45 2016 +0100

    Use nodist_man_MANS instead of man_MANS

 doc/Makefile.am | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 5cec6a7c8e4e1b13e3ec711fba07283445d43424
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Fri Dec 2 12:59:52 2016 +0100

    Clean up configure.ac

 configure.ac | 36 ++++++++++++++++++++++++++++++------
 1 file changed, 30 insertions(+), 6 deletions(-)

commit d019d6db09cd454f644cd8657bbcfe4ff503bd1d
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Fri Dec 2 12:59:23 2016 +0100

    Remove $(INCLUDES) usage

 src/Makefile.am | 5 -----
 1 file changed, 5 deletions(-)

commit 81f5128caa14b17041606c605f5ce0e188a77f91
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Fri Dec 2 12:34:43 2016 +0100

    Add Resources section to README
    
    It's been pointed out that GitHub considers every tag in a
    repository to be a "release", and automatically lists it in
    a specific section on the project's page.
    
    Additionaly, for each such "release", it provide links that
    can be used to download the contents of the repository at the
    time the tag was created.
    
    However, those contents are neither enough to build Beef
    directly (generated files have, rightfully, never been checked
    into Git) nor to initialize the build system properly, which
    makes the archives created this way all but useless.
    
    Include a new section in the README that explains where to get
    proper release archives, plus other information about
    obtaining Beef.
    
    At the same time get rid of the Contacts section, which was
    never very useful.

 README.markdown | 16 ++++++++++++----
 1 file changed, 12 insertions(+), 4 deletions(-)

commit e69ca1a584ef65c62f80e7fdc822f08141b62a59
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Fri Dec 2 12:17:26 2016 +0100

    Update autogen.sh
    
    Prefer symlinks to copies for build system files.

 autogen.sh | 31 +++++++++++++++++--------------
 1 file changed, 17 insertions(+), 14 deletions(-)

commit 3aed064410e50a90add101cbec96b74b7398f684
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Fri Dec 2 12:05:38 2016 +0100

    Use dist_doc_DATA instead of doc_DATA

 Makefile.am | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 89bed25d03ac65f36a1357baa23c9ad6350c9b3b
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Thu Dec 1 19:35:28 2016 +0100

    Make man page building rule more generic

 doc/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1bbb0b9973251c0ae871ef9251d9805c1d7c748e
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Thu Dec 1 19:38:17 2016 +0100

    Don't distribute built man page

 doc/Makefile.am | 4 ----
 1 file changed, 4 deletions(-)

commit 505ac8e082859e81625e00f776e7213e8ea41e53
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Thu Dec 1 19:33:12 2016 +0100

    Make pandoc mandatory for building

 HACKING.markdown | 8 --------
 INSTALL.markdown | 4 +++-
 Makefile.am      | 1 -
 configure.ac     | 3 ++-
 doc/Makefile.am  | 6 ++----
 5 files changed, 7 insertions(+), 15 deletions(-)

commit 752bdc45cbbeb45e9b7f9771c9858bdb0e052227
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Thu Dec 1 17:48:59 2016 +0100

    Rename all Markdown files to *.markdown

 .gitignore                                 |  1 -
 AUTHORS.md => AUTHORS.markdown             |  0
 HACKING.md => HACKING.markdown             |  2 +-
 INSTALL.md => INSTALL.markdown             |  0
 Makefile.am                                | 10 +++++-----
 NEWS.md => NEWS.markdown                   |  0
 README.md => README.markdown               |  0
 configure.ac                               |  2 +-
 doc/.gitignore                             |  1 +
 doc/Makefile.am                            |  2 +-
 doc/{beef.1.text.in => beef.1.markdown.in} |  0
 11 files changed, 9 insertions(+), 9 deletions(-)

commit b9ed3b5b9737cd932f1a470a97068b955f4f57b1
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Thu Dec 1 17:10:56 2016 +0100

    Improve ChangeLog generation
    
    Don't do anything unless we're building from a git checkout,
    and consider any failure in generating a ChangeLog severe enough
    that the entire build has to be stopped.

 Makefile.am | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

commit ef53518cc484a7873c64d891c5bc0d5d9976a1dc
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Thu Dec 1 17:06:54 2016 +0100

    Use --color=never when generating ChangeLog
    
    We want to make sure the ChangeLog contains plain text only;
    passing --color=never to git log ensures no funny escape
    sequences will end up in the resulting file.

 Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit faced69a9a8bb55598213e4c51737c874e2139d3
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Thu Dec 1 17:05:14 2016 +0100

    Disable maintainer mode

 configure.ac | 1 -
 1 file changed, 1 deletion(-)

commit 6f971a9c22562ff4874f3d1430a87c358ea67da2
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Thu Dec 1 17:03:44 2016 +0100

    Update ignore patterns

 .gitignore     | 21 ++++++++++++++-------
 doc/.gitignore |  1 +
 src/.gitignore |  1 +
 3 files changed, 16 insertions(+), 7 deletions(-)

commit ba78d33d1747d11fab6ff4e51e65be803a17be62
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Tue Oct 28 16:39:17 2014 +0100

    Use memcopy() when extending the prompt buffer.

 src/io.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

commit ae515411e28d71f4ca2c35cc253fcd160103e28f
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Tue Oct 28 11:33:01 2014 +0100

    Remove unused variable declaration.

 src/io.c | 1 -
 1 file changed, 1 deletion(-)

commit 23daa2360f459bd47f0e5b29e4ae3191d38d8ea1
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Tue Oct 21 22:03:22 2014 +0200

    === Beef 1.0.1 ===

commit a2340e2a861c351ec9661bd619144066837f38ab
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Tue Oct 21 22:03:06 2014 +0200

    Bump version number.

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f2a0a03a8c1e66ff499ca013cb603e35784a2756
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Tue Oct 21 00:28:39 2014 +0200

    Update for enumeration change.

 src/options.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit dae955874ccef9e145427839d1fa56b838bbb3b4
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Tue Oct 21 00:27:01 2014 +0200

    Bump minimum version for requirements.

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f5299a39128a33caf79b3cd7da3a4d0fdd093438
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Mon Oct 20 00:00:25 2014 +0200

    Fix a type warning.

 src/io.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5cc82e4e996b017e26be2a12169d7cd05f6f0870
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sun Oct 19 23:36:42 2014 +0200

    Don't call g_type_init() on recent GLib versions.

 src/main.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit cf9813567274432f8edf1856b3dd44c97e09c6bc
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sun Oct 19 23:35:34 2014 +0200

    Update documentation.

 AUTHORS               |  1 -
 AUTHORS.md            |  4 +++
 HACKING => HACKING.md |  6 ++--
 INSTALL               | 12 -------
 INSTALL.md            | 12 +++++++
 Makefile.am           | 10 +++---
 NEWS                  | 61 ----------------------------------
 NEWS.md               | 91 +++++++++++++++++++++++++++++++++++++++++++++++++++
 README => README.md   | 17 +++++++---
 9 files changed, 128 insertions(+), 86 deletions(-)

commit daceaee3892c6ede037099af9429f926ec910cb7
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sun Oct 19 23:25:51 2014 +0200

    Nitpicks.

 src/io.c      | 2 +-
 src/io.h      | 2 +-
 src/main.c    | 2 +-
 src/options.c | 3 +--
 src/options.h | 2 +-
 5 files changed, 5 insertions(+), 6 deletions(-)

commit f2908184d829633a66d4cb4516b0ea898d5f5e3b
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sun Oct 19 23:20:34 2014 +0200

    Update manual page.

 doc/beef.1.text.in | 48 +++++++++++++++++++++++++++---------------------
 1 file changed, 27 insertions(+), 21 deletions(-)

commit d34bd93c5c4b0b9a6a4d3fad0556b75e16bda597
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sun Oct 19 22:53:42 2014 +0200

    Indentation changes.

 src/main.c    | 64 +++++++++++++++++++++++++++++------------------------------
 src/options.c | 36 ++++++++++++++++-----------------
 2 files changed, 50 insertions(+), 50 deletions(-)

commit ac0c3e5a0c30d86634a2707735cd86b4c4f4c27c
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sun Oct 19 22:50:37 2014 +0200

    Improve readline prompt handling.

 src/io.c | 97 +++++++++++++++++++++++++++++++++++++++++++++++-----------------
 1 file changed, 72 insertions(+), 25 deletions(-)

commit 083b4decb8e4137261a3e9a207f4bae1a529c21b
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sun Oct 19 21:59:52 2014 +0200

    Update copyright years.

 src/io.c      | 2 +-
 src/io.h      | 2 +-
 src/main.c    | 2 +-
 src/options.c | 2 +-
 src/options.h | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

commit 87a71b9080c4b9c77abb4286c5e55750e1b5a9fe
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sun Oct 19 21:58:45 2014 +0200

    Improve program loading routine.

 src/io.c | 72 ++++++++++++++++++++++++++--------------------------------------
 1 file changed, 29 insertions(+), 43 deletions(-)

commit 28faf577ab27590800d350cdc34dc561b5972f03
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sun Oct 19 21:18:50 2014 +0200

    Update input routines.

 src/io.c | 80 ++++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 40 insertions(+), 40 deletions(-)

commit f6249bf8662ba0f502420224104f33f6ff1c6b0a
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sun Oct 19 19:51:53 2014 +0200

    Update file reading routine.

 src/io.c   | 33 ++++++++++++++++++++++-----------
 src/io.h   | 24 ++++++++++++------------
 src/main.c | 28 ++++++++++++++--------------
 3 files changed, 48 insertions(+), 37 deletions(-)

commit 51342ad5eb36cd099e10f0f25ddac9f12c28ee8f
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sun Oct 19 19:16:48 2014 +0200

    Change indentation.

 configure.ac | 27 +++++++++++++--------------
 1 file changed, 13 insertions(+), 14 deletions(-)

commit 4570775fef1697fb669b3aff1419f67bbc17230d
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sun Oct 19 19:15:04 2014 +0200

    Require Cattle 1.2.0.

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7f53cf31c12f216ef55e372d4b677c97d111cadd
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sat Apr 9 15:39:46 2011 +0200

    === Release 1.0.0 ===

commit df58f375a0ce06a027b7a8f3fa9dc57ca82c9a78
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sat Apr 9 15:39:19 2011 +0200

    Bump version number.

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b1cd2990f03cee39e6b7f4d989cb82716ed58fb2
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sat Apr 9 15:38:45 2011 +0200

    Don't install HACKING and INSTALL.

 Makefile.am | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit afb1b17eb6b03f0a5b9006a06009327c572b0549
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sat Apr 9 11:32:30 2011 +0200

    Use readline only if input is a terminal.

 src/main.c | 23 +++++++++++++++--------
 1 file changed, 15 insertions(+), 8 deletions(-)

commit a8914dfffc621d921952ae525e51dac2ec362ea8
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Fri Apr 8 21:59:10 2011 +0200

    Update and improve README.

 README | 50 ++++++++++++++++++++------------------------------
 1 file changed, 20 insertions(+), 30 deletions(-)

commit 9cba6db294f2987cc50db283b25cc538ad32bcd2
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Fri Apr 8 21:52:59 2011 +0200

    Note in the man page that `-' can be used.

 doc/beef.1.text.in | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 86ae30936ec1c511c06d2571c704d68d74105729
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Fri Apr 8 21:44:40 2011 +0200

    Use a better error message when FILE is missing.

 src/main.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 9523caca7b0faca3052e420993693d077bf63e72
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Fri Apr 8 21:39:42 2011 +0200

    Automatically insert version number in man page.

 configure.ac                        | 1 +
 doc/Makefile.am                     | 5 ++---
 doc/{beef.1.text => beef.1.text.in} | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

commit 98a58b769d87ee11a75093643f5234da2b9ef196
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Fri Apr 8 21:32:07 2011 +0200

    Improve ChangeLog generation rules.

 Makefile.am | 28 +++++++---------------------
 1 file changed, 7 insertions(+), 21 deletions(-)

commit e9b61913f584d20faac0498328ea35a7ee8e55e7
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Fri Apr 8 21:27:04 2011 +0200

    Build man page whenever the source changes.

 doc/Makefile.am | 2 --
 1 file changed, 2 deletions(-)

commit 35ea31d22610584e0235dd433fb19e4798c64c83
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Fri Apr 8 21:23:39 2011 +0200

    Don't unconditionally build man page.
    
    If Pandoc is not found at build time, just show a warning and
    install the man page that was shipped with the release.

 doc/Makefile.am | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

commit 1ee774705cb474425df5a4e726fada05b444e3ea
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Fri Apr 8 19:30:00 2011 +0200

    Expand man page.

 doc/beef.1.text | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 65 insertions(+), 1 deletion(-)

commit 774d2fbb42880a7aa4efa53f8cb66e64c0b82d17
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Fri Mar 25 21:49:59 2011 +0100

    Add INSTALL and HACKING.

 HACKING     |  8 ++++++++
 INSTALL     | 12 ++++++++++++
 Makefile.am |  2 ++
 3 files changed, 22 insertions(+)

commit 9a419def3ab334049760a18e01af699b7f744c8e
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Fri Mar 25 21:40:16 2011 +0100

    Improve and update NEWS file.

 NEWS | 70 ++++++++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 45 insertions(+), 25 deletions(-)

commit 53c3104d04ec061582dd5dfdeee07842d5c6aa77
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Fri Mar 25 21:09:30 2011 +0100

    Use a convenience function to access option entries.

 src/main.c    |  3 ++-
 src/options.c | 16 +++++++++++++---
 src/options.h |  4 +---
 3 files changed, 16 insertions(+), 7 deletions(-)

commit 41b915387f4f8aec8ccec95d69883f5f400362dd
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sun Mar 20 22:33:28 2011 +0100

    Create and install ChangeLog.

 Makefile.am | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

commit 329d800e096393661727fc5cf233cffde5dcd131
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sun Mar 20 22:29:08 2011 +0100

    Install documentation.

 AUTHORS     |   1 +
 COPYING     | 339 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 Makefile.am |   8 +-
 3 files changed, 347 insertions(+), 1 deletion(-)

commit e19635e6dca1288a2a1d13a1eee1346e1711624a
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sun Mar 20 22:22:46 2011 +0100

    Reorder options and improve wording.

 src/options.c | 38 +++++++++++++++++++-------------------
 1 file changed, 19 insertions(+), 19 deletions(-)

commit e2f0bc6637fed79e53e748011e7dba0a2540e63b
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sun Mar 20 22:07:20 2011 +0100

    Mark the -d option as allowing no args.

 src/options.c | 32 +++-----------------------------
 1 file changed, 3 insertions(+), 29 deletions(-)

commit 41e381179c27fc443a3746defd507dc17e6f2973
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sun Mar 20 21:48:58 2011 +0100

    Replace man page.
    
    The new man page is written in Markdown, and converted to
    man format using Pandoc.

 Makefile.am     |  1 +
 beef.1          | 56 --------------------------------------------------------
 configure.ac    |  3 +++
 doc/Makefile.am | 24 ++++++++++++++++++++++++
 doc/beef.1.text | 38 ++++++++++++++++++++++++++++++++++++++
 5 files changed, 66 insertions(+), 56 deletions(-)

commit c5235388181cb1ff8eb68c690adf9cadd7d4cadb
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Wed Mar 16 00:09:01 2011 +0100

    Fix long option name.

 src/options.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 9e55e06f82f8bc5d464604d6f44b997055399b53
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Tue Mar 15 18:00:35 2011 +0100

    Reset the prompt after input.

 src/io.c | 5 +++++
 1 file changed, 5 insertions(+)

commit 7294cbbc4ef254bac50f3589eb39f01b71ec7e77
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Tue Mar 15 00:03:42 2011 +0100

    Make readline interact nicely with program's output.

 src/io.c   | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++------------
 src/main.c | 13 +++++++-----
 2 files changed, 67 insertions(+), 18 deletions(-)

commit a9f3b753f9fdddd96b469688cf5b6019f90d60a2
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Mon Mar 14 21:35:10 2011 +0100

    Disable filename completion on TAB.

 src/main.c | 4 ++++
 1 file changed, 4 insertions(+)

commit e783342068b6cd318456cabc2241e03605695bb5
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Mon Mar 14 14:21:00 2011 +0100

    Use readline for interactive input.

 configure.ac |  9 +++++++++
 src/io.c     | 36 ++++++++++++++++++++++++++++++++++++
 src/io.h     | 21 ++++++++++++---------
 src/main.c   |  7 +++++++
 4 files changed, 64 insertions(+), 9 deletions(-)

commit 41978da1ea8f9857857106aab864b6b2dbea3870
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sun Mar 13 21:53:04 2011 +0100

    Release all resources.

 src/main.c | 74 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 72 insertions(+), 2 deletions(-)

commit 9cf11f808b1dd8077efabc3e098ecab60e55de8b
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sun Mar 13 21:32:11 2011 +0100

    Support input from a file.

 src/io.c      | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/io.h      |  3 +++
 src/main.c    | 35 +++++++++++++++++++++++++++++++++++
 src/options.c | 39 ++++++++++++++++++++++++++++++++++++++-
 src/options.h |  3 ++-
 5 files changed, 136 insertions(+), 2 deletions(-)

commit a0628c31aa3c69a358b7352d4a7f064ea90bd100
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sun Mar 13 20:54:50 2011 +0100

    Support output to a file.

 src/io.c      | 34 ++++++++++++++++++++++++++++++++
 src/io.h      | 10 ++++++++--
 src/main.c    | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++---------
 src/options.c | 44 +++++++++++++++++++++++++++++++++++++++--
 src/options.h | 11 ++++++++++-
 5 files changed, 148 insertions(+), 14 deletions(-)

commit f2f3cee239c28dc6eb31e830b17b4ff8ce2401dc
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sun Mar 13 19:04:20 2011 +0100

    Ensure single inclusion.

 src/io.h | 9 +++++++++
 1 file changed, 9 insertions(+)

commit efb95a1727e326358079bfeab77e8b95b4cedd4a
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sun Mar 13 19:03:12 2011 +0100

    Improve error reporting.

 src/main.c | 39 +++++++++++++++++++++------------------
 1 file changed, 21 insertions(+), 18 deletions(-)

commit 44553b8b14669805a4837296676f9fc2e1ee9599
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sun Mar 13 18:56:23 2011 +0100

    Parse commandline options.

 src/Makefile.am |   2 +
 src/main.c      |  51 +++++++++++++++++---
 src/options.c   | 144 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/options.h   |  34 +++++++++++++
 4 files changed, 225 insertions(+), 6 deletions(-)

commit 213251d4a5b96f3a44c21042604add45668ac428
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sun Mar 6 19:28:29 2011 +0100

    Make the interpreter useful.

 src/Makefile.am |   2 +
 src/io.c        |  94 +++++++++++++++++++++++++++++++++++++++++++++
 src/io.h        |  26 +++++++++++++
 src/main.c      | 116 ++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 4 files changed, 234 insertions(+), 4 deletions(-)

commit f99fb2d8c1554f608ca876248411694f792a40b9
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sun Mar 6 17:47:54 2011 +0100

    Enable silent rules.

 configure.ac | 1 +
 1 file changed, 1 insertion(+)

commit 095ebfd464b9466065f557408acab2c04fb112bb
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sun Mar 6 17:41:11 2011 +0100

    Add simple build system and dummy interpreter.

 .gitignore      | 12 ++++++++++++
 Makefile.am     | 10 ++++++++++
 autogen.sh      | 29 +++++++++++++++++++++++++++++
 configure.ac    | 27 +++++++++++++++++++++++++++
 src/Makefile.am | 26 ++++++++++++++++++++++++++
 src/main.c      | 15 +++++++++++++++
 6 files changed, 119 insertions(+)

commit 4c87eafed836c539417db7c8bce82de4541efc49
Author: Andrea Bolognani <eof@kiyuko.org>
Date:   Sun Mar 6 17:05:54 2011 +0100

    Initial import.

 NEWS   | 41 +++++++++++++++++++++++++++++++++++++++++
 README | 39 +++++++++++++++++++++++++++++++++++++++
 beef.1 | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 136 insertions(+)
