Skip to content
Snippets Groups Projects
Commit 2b52aaa0 authored by rtoy's avatar rtoy
Browse files

Generate more informative gensyms.

parent 01c995de
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/interr.lisp,v 1.46 2006/11/08 22:09:56 rtoy Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/interr.lisp,v 1.47 2007/08/17 14:02:12 rtoy Rel $")
;;;
;;; **********************************************************************
;;;
......@@ -37,9 +37,9 @@
(defmacro deferr (name args &rest body)
(let* ((rest-pos (position '&rest args))
(required (if rest-pos (subseq args 0 rest-pos) args))
(fp (gensym))
(sigcontext (gensym))
(sc-offsets (gensym))
(fp (gensym "FP-"))
(sigcontext (gensym "SIGCONTEXT-"))
(sc-offsets (gensym "SC-OFFSETS-"))
(temp (gensym))
(fn-name (symbolicate name "-HANDLER")))
`(progn
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment