Changeset 6796 for branches


Ignore:
Timestamp:
Jul 8, 2007, 11:12:43 PM (17 years ago)
Author:
Gary Byers
Message:

COCOA-APPLICATION is a subclass of APPLICATION, calls the next-method
in its toplevle-function. (This is a mess ...)

Fix pathname botch in SAVE-APPLICATION call.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ide-1.0/ccl/examples/cocoa-application.lisp

    r6793 r6796  
    5555
    5656
    57 (defclass cocoa-application (lisp-development-system)
     57(defclass cocoa-application (application)
    5858    ())
    5959
     
    6868(defmethod toplevel-function ((a cocoa-application) init-file)
    6969  (declare (ignore init-file))
     70  (call-next-method)
    7071  (reset-ccl-directory)
    7172  (start-cocoa-application))
     
    9798(save-application
    9899 (make-pathname
    99   :directory (translate-logical-pathname "ccl:OpenMCL.app;Contents;MacOS;")
     100  :directory (pathname-directory (translate-logical-pathname "ccl:OpenMCL.app;Contents;MacOS;"))
    100101  :name (standard-kernel-name))
    101102 :prepend-kernel t
Note: See TracChangeset for help on using the changeset viewer.