From 7eed2b59e1fb8fa6e2f28a919b625659e2ccbe82 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Sat, 22 Feb 1992 00:09:10 +0000
Subject: [PATCH] Changed FOREIGN-SYMBOL-ADDRESS to call VM:EXTERN-ALIEN-NAME
 to convert the alien name into the form found in the symbol table.  This way,
 we can prepend an underscore on the SPARC and RT but not on the PMAX.

---
 code/load.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/code/load.lisp b/code/load.lisp
index b71ca5890..2ccab4e8c 100644
--- a/code/load.lisp
+++ b/code/load.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/load.lisp,v 1.38 1992/02/19 16:41:26 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/load.lisp,v 1.39 1992/02/22 00:09:10 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -1047,7 +1047,7 @@
 (defun foreign-symbol-address (symbol)
   (multiple-value-bind
       (value found)
-      (gethash symbol *foreign-symbols* 0)
+      (gethash (vm:extern-alien-name symbol) *foreign-symbols* 0)
     (unless found
       (error "Unknown foreign symbol: ~S" symbol))
     (int-sap value)))
-- 
GitLab