mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
In MERGE-TOPLEVEL-LAMBDAS, check that the result receiver is not deleted before merging. And stop doing anything if it's passed only one lambda. Fixes lp#1308328.
4 lines
61 B
Common Lisp
4 lines
61 B
Common Lisp
(labels ((a (x)))
|
|
(error 'program-error)
|
|
(a (catch 'c)))
|