[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
List of pending catch tags
- To: rem@IMSSS, common-lisp@SU-AI.ARPA
- Subject: List of pending catch tags
- From: Dick Gabriel <RPG@SU-AI.ARPA>
- Date: Fri, 23 Nov 1984 19:19:00 -0000
Despite what many people believe, the Common Lisp designers have left
some programs out of the Common Lisp spec, so you, the user, can have
some fun too and write your own. If you're interested in maintaining
a list of pending catch tags, write it yourself with a special, called
something like *PENDING-TAGS*. Then you can write:
(defmacro memo-catch (tag form)
`(let ((*pending-tags* *pending-tags*)
(tag ,tag))
(push tag *pending-tags*)
(catch tag ,form)))
-rpg-