Skip to content
Snippets Groups Projects
Commit 08d8ca63 authored by gerd's avatar gerd
Browse files

Generalized function names.

	* code/macros.lisp (evaluate-declaration-context): Use
	valid-function-name-p.
parent b570be8a
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/macros.lisp,v 1.86 2003/02/05 11:08:43 gerd Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/macros.lisp,v 1.87 2003/02/08 11:33:39 gerd Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -1646,48 +1646,47 @@ ...@@ -1646,48 +1646,47 @@
;;; matches the specified context. ;;; matches the specified context.
;;; ;;;
(defun evaluate-declaration-context (context name parent) (defun evaluate-declaration-context (context name parent)
(let* ((base (if (and (consp name) (consp (cdr name))) (multiple-value-bind (valid base)
(cadr name) (valid-function-name-p name)
name)) (let ((package (and valid (symbolp base) (symbol-package base))))
(package (and (symbolp base) (symbol-package base)))) (if (atom context)
(if (atom context) (multiple-value-bind (ignore how)
(multiple-value-bind (ignore how) (if package
(if package (find-symbol (symbol-name base) package)
(find-symbol (symbol-name base) package) (values nil nil))
(values nil nil)) (declare (ignore ignore))
(declare (ignore ignore)) (case context
(case context (:internal (eq how :internal))
(:internal (eq how :internal)) (:external (eq how :external))
(:external (eq how :external)) (:uninterned (and (symbolp base) (not package)))
(:uninterned (and (symbolp base) (not package))) (:anonymous (not name))
(:anonymous (not name)) (:macro (eq parent 'defmacro))
(:macro (eq parent 'defmacro)) (:function (member parent '(defun labels flet function)))
(:function (member parent '(defun labels flet function))) (:global (member parent '(defun defmacro function)))
(:global (member parent '(defun defmacro function))) (:local (member parent '(labels flet)))
(:local (member parent '(labels flet))) (t
(t (error "Unknown declaration context: ~S." context))))
(error "Unknown declaration context: ~S." context)))) (case (first context)
(case (first context) (:or
(:or
(loop for x in (rest context)
thereis (evaluate-declaration-context x name parent)))
(:and
(loop for x in (rest context)
always (evaluate-declaration-context x name parent)))
(:not
(evaluate-declaration-context (second context) name parent))
(:member
(member name (rest context) :test #'equal))
(:match
(let ((name (concatenate 'string "$" (string base) "$")))
(loop for x in (rest context) (loop for x in (rest context)
thereis (search (string x) name)))) thereis (evaluate-declaration-context x name parent)))
(:package (:and
(and package (loop for x in (rest context)
(loop for x in (rest context) always (evaluate-declaration-context x name parent)))
thereis (eq (find-package (string x)) package)))) (:not
(t (evaluate-declaration-context (second context) name parent))
(error "Unknown declaration context: ~S." context)))))) (:member
(member name (rest context) :test #'equal))
(:match
(let ((name (concatenate 'string "$" (string base) "$")))
(loop for x in (rest context)
thereis (search (string x) name))))
(:package
(and package
(loop for x in (rest context)
thereis (eq (find-package (string x)) package))))
(t
(error "Unknown declaration context: ~S." context)))))))
;;; PROCESS-CONTEXT-DECLARATIONS -- Internal ;;; PROCESS-CONTEXT-DECLARATIONS -- Internal
......
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