From 3b37c359cab58f626ad7d0cd2b284c9d63101da0 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Mon, 24 Feb 1992 04:00:32 +0000
Subject: [PATCH] Oops, was shifting by 2 instead of multiplying by 2.  There
 is a bit of a difference...

---
 hemlock/spell-rt.lisp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/hemlock/spell-rt.lisp b/hemlock/spell-rt.lisp
index 92353e511..90a31bcd5 100644
--- a/hemlock/spell-rt.lisp
+++ b/hemlock/spell-rt.lisp
@@ -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.5 1992/02/21 22:04:39 wlott Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/spell-rt.lisp,v 1.1.1.6 1992/02/24 04:00:32 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -42,10 +42,10 @@
 
 
 (defmacro sapref (sap offset)
-  `(system:sap-ref-16 ,sap (ash ,offset 2)))
+  `(system:sap-ref-16 ,sap (* ,offset 2)))
 
 (defsetf sapref (sap offset) (value)
-  `(setf (system:sap-ref-16 ,sap (ash ,offset 2)) ,value))
+  `(setf (system:sap-ref-16 ,sap (* ,offset 2)) ,value))
 
 
 (defmacro sap-replace (dst-string src-string src-start dst-start dst-end)
-- 
GitLab