Skip to content
Snippets Groups Projects
Commit 4fc21cc3 authored by wlott's avatar wlott
Browse files

This commit was generated by cvs2svn to compensate for changes in r4603,

which included commits to RCS files with non-trunk default branches.
parents b5c62f71 76446140
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/spell-rt.lisp,v 1.1.1.4 1992/02/14 23:51:14 wlott Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/spell-rt.lisp,v 1.1.1.5 1992/02/21 22:04:39 wlott Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -42,10 +42,10 @@
(defmacro sapref (sap offset)
`(system:sap-ref-16 ,sap ,offset))
`(system:sap-ref-16 ,sap (ash ,offset 2)))
(defsetf sapref (sap offset) (value)
`(setf (system:sap-ref-16 ,sap ,offset) ,value))
`(setf (system:sap-ref-16 ,sap (ash ,offset 2)) ,value))
(defmacro sap-replace (dst-string src-string src-start dst-start dst-end)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment