From 7e5869782dea41df06aab3cf5166dba70a99dcbd Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Wed, 11 Mar 1992 20:47:38 +0000 Subject: [PATCH] Left out a comma in the middle of a def-source-transform. --- compiler/rt/sap.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/rt/sap.lisp b/compiler/rt/sap.lisp index 509e591d1..787feaa42 100644 --- a/compiler/rt/sap.lisp +++ b/compiler/rt/sap.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/rt/sap.lisp,v 1.14 1992/03/11 18:32:49 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/rt/sap.lisp,v 1.15 1992/03/11 20:47:38 wlott Exp $ ;;; ;;; This file contains the IBM RT VM definition of SAP operations. ;;; @@ -388,7 +388,7 @@ need to be shifted. (def-source-transform sap-ref-double (sap offset) (once-only ((sap sap) (offset offset)) `(make-double-float (signed-sap-ref-32 ,sap ,offset) - (sap-ref-32 sap (+ ,offset word-bytes))))) + (sap-ref-32 ,sap (+ ,offset word-bytes))))) (def-source-transform %set-sap-ref-double (sap offset value) (once-only ((sap sap) (offset offset) (value value)) -- GitLab