Changeset 490


Ignore:
Timestamp:
Feb 7, 2004, 1:56:49 PM (21 years ago)
Author:
Gary Byers
Message:

Don't call CHOOSE-FILE-DIALOG when looking for a module.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/level-1/l1-files.lisp

    r437 r490  
    11911191                           str *loading-file-source-file*)
    11921192                   (unless (member str *modules* :test #'string-equal)
    1193                      (catch-cancel
    1194                        (setq pathname (choose-file-dialog
    1195                                        :file-types '(#+sparc-target "sfsl"
    1196                                                      #+ppc-target "pfsl"
    1197                                                      #-(or ppc-target sparc-target) "fasl"
    1198                                                         "text")))))
     1193                     (with-terminal-input
     1194                         (format t "~&pathname: ")
     1195                       (setq pathname (read)))                     )
    11991196                   pathname)))
    12001197    (let ((*loading-modules* (cons str *loading-modules*)))
Note: See TracChangeset for help on using the changeset viewer.