[slime-devel] SLIME bug in CLISP, with LINKKIT=FULL

Hi! I would like to report a small bug in SLIME for CLISP, with LINKKIT=FULL: in swank-clisp.lisp the PNAME of GetCurrentProcessId is: "gETcURRENTpROCESSiD" so the function should be: #+win32 (defmethod getpid () (cond ((find-package :win32) (funcall (find-symbol "gETcURRENTpROCESSiD" :win32))) (t (system::getenv "PID")))) Yours, Frédéric Bastenaire

Frédéric Bastenaire wrote:
Hi!
I would like to report a small bug in SLIME for CLISP, with LINKKIT=FULL:
in swank-clisp.lisp the PNAME of GetCurrentProcessId is: "gETcURRENTpROCESSiD" so the function should be:
#+win32 (defmethod getpid () (cond ((find-package :win32) (funcall (find-symbol "gETcURRENTpROCESSiD" :win32))) (t (system::getenv "PID"))))
clisp 2.34 CL-USER> (CS-COMMON-LISP:find-symbol "GetCurrentProcessId" :win32) WIN32:GetCurrentProcessId :EXTERNAL Thanks. -- WBR, Yaroslav Kavenchuk.
participants (2)
-
Frédéric Bastenaire
-
Yaroslav Kavenchuk