From 13e2381bcecae2d67feb7f9148b8c92616ea5186 Mon Sep 17 00:00:00 2001
From: Francois-Rene Rideau <tunes@google.com>
Date: Fri, 3 Jan 2014 14:51:36 -0500
Subject: [PATCH] No native-namestring in ABCL, and not yet trivially wrapped
 in uiop/os. Use plain namestring.

---
 uiop/os.lisp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/uiop/os.lisp b/uiop/os.lisp
index b97242bd..0de9bd34 100644
--- a/uiop/os.lisp
+++ b/uiop/os.lisp
@@ -267,7 +267,7 @@ suitable for use as a directory name to segregate Lisp FASLs, C dynamic librarie
   (defun chdir (x)
     "Change current directory, as per POSIX chdir(2), to a given pathname object"
     (if-let (x (pathname x))
-      (or #+abcl (java:jstatic "setProperty" "java.lang.System" "user.dir" (native-namestring x))
+      (or #+abcl (java:jstatic "setProperty" "java.lang.System" "user.dir" (namestring x))
           #+allegro (excl:chdir x)
           #+clisp (ext:cd x)
           #+clozure (setf (ccl:current-directory) x)
-- 
GitLab