From 19cb72855c20ad7948b0f4cfd0b770eb82547ddd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kat=20March=C3=A1n?= Date: Thu, 17 Dec 2009 23:27:58 -0600 Subject: [PATCH] EXAMPLES: remove-property is deprecated. Updating an example accordingly. --- examples/pcl-clos.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/pcl-clos.lisp b/examples/pcl-clos.lisp index 946595fa..94f25256 100644 --- a/examples/pcl-clos.lisp +++ b/examples/pcl-clos.lisp @@ -62,7 +62,7 @@ ;; this auto-generates accessors: (setf (property-value (car *lots-of-accounts*) 'unique :accessor t) "I'm a unique butterfly!") -(remove-property (car *lots-of-accounts*) 'unique) ;poof. Accessors stay, though! +(property-makunbound (car *lots-of-accounts*) 'unique) ;poof. Accessors stay, though! ;; You can also inspect objects and their internals at the REPL... ;;