Changeset 414


Ignore:
Timestamp:
Jan 26, 2004, 8:51:20 AM (21 years ago)
Author:
Gary Byers
Message:

(SETF %GET-BITFIELD) becomes %SET-BITFIELD, which is what the setf inverse
thought it was anyway.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/lib/level-2.lisp

    r264 r414  
    434434    (setq val (logior (ash val 1) (%get-bit ptr bit)))))
    435435
    436 (defun (setf %get-bitfield) (val ptr start width)
     436(defun %set-bitfield (ptr start width val)
    437437  (declare (fixnum val start width))
    438438  (do* ((v val (ash v -1))
Note: See TracChangeset for help on using the changeset viewer.