From f3d1abca64f5c73c68e3e9baa7698fac980a3ef6 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Tue, 29 May 1990 16:55:20 +0000 Subject: [PATCH] Added %PUTF, currently defined to just call the PUTF miscop, pending writing of a lisp version. --- code/symbol.lisp | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/code/symbol.lisp b/code/symbol.lisp index 455006f44..8c1870872 100644 --- a/code/symbol.lisp +++ b/code/symbol.lisp @@ -29,10 +29,7 @@ (defun makunbound (variable) "VARIABLE must evaluate to a symbol. This symbol is made unbound, removing any value it may currently have." - (set variable - (%primitive make-other-immediate-type - 0 - vm:unbound-marker-type))) + (makunbound variable)) (defun symbol-value (variable) "VARIABLE must evaluate to a symbol. This symbol's current special @@ -85,17 +82,19 @@ (defun %put (symbol indicator value) "The VALUE is added as a property of SYMBOL under the specified INDICATOR. Returns VALUE." - (do ((pl (symbol-plist symbol) (cddr pl))) - ((endp pl) + (%primitive put symbol indicator value) +#| (do ((pl (symbol-plist symbol) (cddr pl))) + ((atom pl) (setf (symbol-plist symbol) (list* indicator value (symbol-plist symbol))) value) - (cond ((endp (cdr pl)) + (cond ((atom (cdr pl)) (error "~S has an odd number of items in its property list." symbol)) ((eq (car pl) indicator) (rplaca (cdr pl) value) - (return value))))) + (return value))))|# + ) (defun remprop (symbol indicator) "Look on property list of SYMBOL for property with specified @@ -126,6 +125,9 @@ ((eq (car plist) indicator) (return (cadr plist)))))) +(defun %putf (x y z) + (%primitive putf x y z)) + (defun get-properties (place indicator-list) "Like GETF, except that Indicator-List is a list of indicators which will -- GitLab