Last active
June 3, 2021 13:59
-
-
Save jmercouris/2a155918ca0e1507e5dc0d87b803c39d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;; Works | |
(in-package "CCL") | |
(eval-when (:compile-toplevel :load-toplevel :execute) | |
(require "COCOA")) | |
(eval-when (:compile-toplevel :load-toplevel :execute) | |
(objc:load-framework "WebKit" :webkit)) | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;; Doesn't Work | |
(in-package :interface) | |
(defun initialize () | |
(require "COCOA") | |
(objc:load-framework "WebKit" :webkit)) | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;; Response | |
There is no package named "OBJC" . | |
[Condition of type CCL::NO-SUCH-PACKAGE] | |
Restarts: | |
0: [CONTINUE] Retry finding package with name "OBJC". | |
1: [USE-VALUE] Find specified package instead of "OBJC" . | |
2: [MAKE-NICKNAME] Make "OBJC" be a nickname for package "INTERFACE". | |
3: [RETRY-LOAD] Retry loading #P"/Users/jmercouris/Projects/Next/next/lisp/cocoa.lisp" | |
4: [SKIP-LOAD] Skip loading #P"/Users/jmercouris/Projects/Next/next/lisp/cocoa.lisp" | |
5: [LOAD-OTHER] Load other file instead of #P"/Users/jmercouris/Projects/Next/next/lisp/cocoa.lisp" | |
--more-- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment