runtime: Make it nicer to (ge '(R3RS)).
The default parser and unparser expect to find bindings for
e.g. *parser-table* in any given environment, but there are no such
bindings in a package with parent #f (unless you import them). If you
don't, executing (ge '(R3RS)) puts the REPL into a tight little error
loop. This patch makes the parser and unparser consult the (USER)
package if they don't find these bindings in the current environment.
Once "in" a package like (r3rs) it is tricky to get out(!). Entering
(ge '(USER)) will just produce an error: unbound variable GE. Thus
the default/repl-eval now looks for an unquoted expression and
evaluates it in the (USER) package, so you can enter ,(ge '(USER)) to
get back.