On Tue, 16 Jul 2002, art(a)brightlight.com wrote:
Xeamcs 21.4.8 crashes while doing M-x eval-print-last-sexp
on a form in the *scratch* buffer. This is repeatable in
a fresh emacs.
To repeat:
1. Enter the following form in the *scratch* buffer:
(let (n 3) (print n))
2. Place cursor after the final close-paren
3. Type M-x eval-print-last-sexp
Also, crashes doing ^x^e (eval-last-sexp) in 21.4.6
Note that the form is invalid - presumably you really didn't want to
bind 3 to nil, eg: you want (let ((n 3)) n)
-jeff