Skip to content
Snippets Groups Projects
Commit 0c92a22e authored by wlott's avatar wlott
Browse files

Changed SYMBOL-FUNCTION to map to RAW-DEFINITION instead of being a

primitive.
parent 73f66508
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/symbol.lisp,v 1.10 1992/03/02 17:22:49 wlott Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/symbol.lisp,v 1.11 1992/03/08 18:33:57 wlott Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -26,8 +26,7 @@ ...@@ -26,8 +26,7 @@
boundp set)) boundp set))
(in-package "KERNEL") (in-package "KERNEL")
(export '(%set-symbol-value %set-symbol-definition %set-symbol-plist (export '(%set-symbol-value %set-symbol-plist %set-symbol-package fset))
%set-symbol-package fset))
(in-package "LISP") (in-package "LISP")
...@@ -70,19 +69,12 @@ ...@@ -70,19 +69,12 @@
(defun symbol-function (variable) (defun symbol-function (variable)
"VARIABLE must evaluate to a symbol. This symbol's current definition "VARIABLE must evaluate to a symbol. This symbol's current definition
is returned." is returned. Settable with SETF."
(declare (optimize (safety 1))) (raw-definition variable))
(symbol-function variable))
(defun fset (symbol new-value) (defun fset (symbol new-value)
(declare (type symbol symbol) (type function new-value)) (declare (type symbol symbol) (type function new-value))
(if symbol (setf (raw-definition variable) new-value))
(%set-symbol-function symbol new-value)
(error "Can't define NIL.")))
(defun %set-symbol-function (symbol new-value)
(declare (type symbol symbol) (type function new-value))
(%set-symbol-function symbol new-value))
(defun symbol-plist (variable) (defun symbol-plist (variable)
......
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