2001-12-03  Clinton Ebadi <unknown_lamer@hackedtobits.com>
	* NEWS: 0.1.2 information
	* input.hh: new input/output processing for keyword handlers
	* test.cc: updates examples to use new features

2001-12-04  Clinton Ebadi <unknown_lamer@hackedtobits.com>
	* input.hh: error handling additions
	* input.cc: get_command() and event_handler() changed
	* test.cc: updated to use new error handling code
	* NEWS: 0.1.3 information
	* input.hh: argumentless input/output_stream are now prefixed with get_
	* test.cc: fixed "moo" and "quit" to use get_output_stream
	* input.hh: New data type: game_handler_t replaces func_handler
	* input.cc: code updated to use game_handler_t
	* test.cc: new function (f_foo) that shows new features
	* test.cc: updates to use game_handler_t
	* input.hh: optional arguments to callbacks supported

2001-12-05
	* input.hh: callbacks now return void
	* test.cc: more example callbacks
	* test.cc: changed f_foo to not use vector::at (GCC 2.95 lacks it)

2001-12-06
	* test.cc: really changed f_foo to not use vector::at (oops) *
	input.cc: game_parser::get_command() uses new parsing scheme,
	works with empty commands but doesn't fix not-whitespace command
	delimeter problem

2001-12-06
	* input.cc: fixed get_command() (I think). Last update broke it
	* test.cc: name: eliminated extra newline outputted

2001-12-08
	* game_parser.texinfo: added documentation
	* input.hh: game_parser::not_enough_args is now
	game_parser::wrong_number_of_args
	* test.cc: updated to use new name of not_enough_args
	* input.hh: added method get_event_handler to game_parser
	* input.cc: added private method to game_parser called my_getline
	to get a line of input delimeted by c_del, modified
	game_parser::get_command() to use it