Re: Where to go with EQL5 and QT specific questions?

"pls.153" <pls.153-g/[email protected]> Thu, 29 Apr 2021 15:25:26 +0000
Newsgroups gmane.lisp.ecl.general
Message-ID <j-Eo5VtCqhv-RIegPN5ZTF69XqtZbdhD0kPornpT0a86JSCkZDcoY365YhNz12FfAJ-its0KeIYcOmebo-Gq6P92qD9jgIXE5JxgReRZP_Y=@protonmail.com>
On Thursday, April 29, 2021 4:31 PM, Erik Winkels <aerique-qWit8jRvyhVmR6Xm/[email protected]> wrote:
>
>     Condition of type: FILE-ERROR
>     Filesystem error with pathname "SYS:help.doc".
>     Either
>     1.  the file does not exist, or
>     2.  we are not allowed to access the file, or
>     3.  the pathname points to a broken symbolic link.
>         No restarts available.
>
>         Top level in: #<process TOP-LEVEL 0xb0581fc0>.
>

I had the same issue on iOS, here is what I did:

  ;; needed e.g. for loading 'help.doc'
  (setf (logical-pathname-translations "SYS")
        (list (list #p"sys:**;*.*"
                    (merge-pathnames "**/*.*"
                                     (user-homedir-pathname)))))

Now you can put "help.doc" in (user-homedir-pathname), and ECL will find it.

Paul