Skip to content
Snippets Groups Projects
Commit 42b3da39 authored by Duane Rettig's avatar Duane Rettig
Browse files

Suppress warning on Mac

An unused-variable warning was showing up in Mac-specific code; I
don't know if it has always been this way, but the change should be
backward compatible.

Change-Id: I0225682e64e9eb9bb0c3187cd8ded41856a30afb
parent 116ec91d
No related branches found
No related tags found
No related merge requests found
......@@ -43,7 +43,7 @@
(unless (dolist (pathname sys::*clim-library-search-path*)
(handler-case (progn (load (merge-pathnames sys::library-name pathname))
(return t))
(error (e) nil)))
(error (e) (declare (ignore e)) nil)))
(error "Can't find ~a in ~{~a~^, ~}~%" sys::library-name sys::*clim-library-search-path*))))))
#+(version>= 5 0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment