Changeset 4162
- Timestamp:
- 10/01/03 21:29:17 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/setf.lisp
r4161 r4162 2 2 ;;; 3 3 ;;; Copyright (C) 2003 Peter Graves 4 ;;; $Id: setf.lisp,v 1.3 0 2003-10-01 17:45:35piso Exp $4 ;;; $Id: setf.lisp,v 1.31 2003-10-01 21:29:17 piso Exp $ 5 5 ;;; 6 6 ;;; This program is free software; you can redistribute it and/or … … 117 117 (symbol-function name)) 118 118 ((and (consp name) (eq (car name) 'setf)) 119 (or (get 'setf- inverse(cadr name)) (error 'undefined-function)))119 (or (get 'setf-function (cadr name)) (error 'undefined-function))) 120 120 (t (error 'type-error)))) 121 121 … … 124 124 (fset name function)) 125 125 ((and (consp name) (eq (car name) 'setf)) 126 (%put (cadr name) 'setf- inversefunction))126 (%put (cadr name) 'setf-function function)) 127 127 (t (error 'type-error)))) 128 128
Note: See TracChangeset
for help on using the changeset viewer.