Skip to content
Snippets Groups Projects
Commit 6974384d authored by toy's avatar toy
Browse files

Entomotomy bug: macrolet-insufficient-syntax-checking

Port the bug fix from SBCL.
parent 900ae9e2
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1tran.lisp,v 1.131 2002/11/21 20:02:26 toy Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1tran.lisp,v 1.132 2002/11/25 22:07:14 toy Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -2270,6 +2270,9 @@ ...@@ -2270,6 +2270,9 @@
:environment environment) :environment environment)
(unless (symbolp name) (unless (symbolp name)
(compiler-error "Macro name ~S is not a symbol." name)) (compiler-error "Macro name ~S is not a symbol." name))
(unless (listp arglist)
(compiler-error "Local macro ~S has argument list that is not a list: ~S."
name arglist))
(when (< (length def) 3) (when (< (length def) 3)
(compiler-error (compiler-error
"Local macro ~S is too short to be a legal definition." name)) "Local macro ~S is too short to be a legal definition." name))
......
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