On Wed, 2009-04-22 at 16:53 +0200, Andreas Rottmann wrote: > Mike Gran <spk...@yahoo.com> writes: > > (with-test-prefix "basic char handling" > > (pass-if-exception "non-existent named character" > > exception:read-error > > #\foobar)) > > > You have a syntax error in your source script, which will hence not be > able to be read and consequently not be able to be evaluated. > > Use this instead of #\foobar in the source text: > > (with-input-from-string "#\\foobar" read) > > This way, your source has legal syntax.
> --Rotty Nice. It works great. Thanks. -Mike Gran