Changeset 4162


Ignore:
Timestamp:
10/01/03 21:29:17 (19 years ago)
Author:
piso
Message:

Work in progress.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/j/src/org/armedbear/lisp/setf.lisp

    r4161 r4162  
    22;;;
    33;;; Copyright (C) 2003 Peter Graves
    4 ;;; $Id: setf.lisp,v 1.30 2003-10-01 17:45:35 piso Exp $
     4;;; $Id: setf.lisp,v 1.31 2003-10-01 21:29:17 piso Exp $
    55;;;
    66;;; This program is free software; you can redistribute it and/or
     
    117117         (symbol-function name))
    118118        ((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)))
    120120        (t (error 'type-error))))
    121121
     
    124124         (fset name function))
    125125        ((and (consp name) (eq (car name) 'setf))
    126          (%put (cadr name) 'setf-inverse function))
     126         (%put (cadr name) 'setf-function function))
    127127        (t (error 'type-error))))
    128128
Note: See TracChangeset for help on using the changeset viewer.