Skip to content
Snippets Groups Projects
Commit 2c3126e2 authored by dtc's avatar dtc
Browse files

Rework some error's into simple-program-error's.

Generate an simple-undefined-function error when a macro function is
funcall'ed.
Based on patches from Peter Van Eynde.
parent 10037411
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/code/eval.lisp,v 1.27 1998/02/13 16:09:43 dtc Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/eval.lisp,v 1.28 1998/12/19 16:00:39 dtc Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -175,7 +175,9 @@ ...@@ -175,7 +175,9 @@
(case name (case name
(function (function
(unless (= args 1) (unless (= args 1)
(error "Wrong number of args to FUNCTION:~% ~S." exp)) (error 'simple-program-error
:format-control "Wrong number of args to FUNCTION:~% ~S."
:format-arguments (list exp)))
(let ((name (second exp))) (let ((name (second exp)))
(if (or (atom name) (if (or (atom name)
(and (consp name) (and (consp name)
...@@ -184,11 +186,15 @@ ...@@ -184,11 +186,15 @@
(eval:make-interpreted-function name)))) (eval:make-interpreted-function name))))
(quote (quote
(unless (= args 1) (unless (= args 1)
(error "Wrong number of args to QUOTE:~% ~S." exp)) (error 'simple-program-error
:format-control "Wrong number of args to QUOTE:~% ~S."
:format-arguments (list exp)))
(second exp)) (second exp))
(setq (setq
(unless (evenp args) (unless (evenp args)
(error "Odd number of args to SETQ:~% ~S." exp)) (error 'simple-program-error
:format-control "Odd number of args to SETQ:~% ~S."
:format-arguments (list exp)))
(unless (zerop args) (unless (zerop args)
(do ((name (cdr exp) (cddr name))) (do ((name (cdr exp) (cddr name)))
((null name) ((null name)
...@@ -360,7 +366,9 @@ ...@@ -360,7 +366,9 @@
(setf (info function macro-function symbol) function) (setf (info function macro-function symbol) function)
(setf (symbol-function symbol) (setf (symbol-function symbol)
#'(lambda (&rest args) (declare (ignore args)) #'(lambda (&rest args) (declare (ignore args))
(error "Cannot funcall macro functions."))) (error 'simple-undefined-function
:name symbol
:format-control "Cannot funcall macro functions.")))
function) function)
;;; Macroexpand-1 -- Public ;;; Macroexpand-1 -- Public
......
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