From 3397c1325c8918fe7f187673ff33e469158955e0 Mon Sep 17 00:00:00 2001 From: Alastair Bridgewater Date: Wed, 30 Jun 2010 16:25:01 +0000 Subject: [PATCH] 1.0.39.24: win32: Fix foreign function name conversion. * In 1.0.39.15, the win32 case for foreign function names was accidentally removed when the darwin/dlshim case (the same case) was removed. Re-added the win32 case. --- src/code/foreign.lisp | 3 ++- version.lisp-expr | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/code/foreign.lisp b/src/code/foreign.lisp index cd83867..8c32729 100644 --- a/src/code/foreign.lisp +++ b/src/code/foreign.lisp @@ -16,7 +16,8 @@ (defun extern-alien-name (name) (handler-case - (coerce name 'base-string) + #!-win32 (coerce name 'base-string) + #!+win32 (concatenate 'base-string "_" name) (error () (error "invalid external alien name: ~S" name)))) diff --git a/version.lisp-expr b/version.lisp-expr index fd7dbb8..4de1dcf 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"1.0.39.23" +"1.0.39.24" -- 1.7.10.4