[PATCH] Some tweaks to the R6RS support

2010-10-26 Thread Andreas Rottmann
* module/rnrs/base.scm (error, assert): Define -- they were missing. (assertion-violation): Properly treat a #f `who' argument. * module/rnrs/conditions.scm (condition): Use `assertion-violation' instead of the undefined `raise'. (define-condition-type): Fix for multiple fields. *

[PATCH] LALR Parser Documentation Fix

2010-10-26 Thread Noah Lavine
The documentation for the LALR parser currently says that the tokenizer procedure passed to the parser should be a unary procedure taking a port, but the documentation at http://code.google.com/p/lalr-scm/wiki/ParserDefinition says it should be a thunk. The following patch fixes this: Noah diff