all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* readable-not-found
@ 2022-03-09 11:23 Andreas Röhler
  2022-03-09 11:51 ` readable-not-found tomas
  2022-03-09 12:20 ` readable-not-found Emanuel Berg via Users list for the GNU Emacs text editor
  0 siblings, 2 replies; 5+ messages in thread
From: Andreas Röhler @ 2022-03-09 11:23 UTC (permalink / raw)
  To: Help GNU Emacs

Have the following load-test.el in some ~/testdir/ :

(if (file-readable-p "../test.el")
   (load "../test.el" nil t))

(file-readable-p "../test.el") reports t, but evaluating the 
load-function sends:

Debugger entered--Lisp error: (file-missing "Cannot open load file" 
"Datei oder Verzeichnis nicht gefunden" "../test.el")
   load("../test.el" nil t)
   (if (file-readable-p "../test.el") (load "../test.el" nil t))
   eval((if (file-readable-p "../test.el") (load "../test.el" nil t)) nil)
   elisp--eval-last-sexp(nil)
   eval-last-sexp(nil)
   funcall-interactively(eval-last-sexp nil)
   call-interactively(eval-last-sexp nil nil)
   command-execute(eval-last-sexp)


Checked with emacs -Q v26, v28, v29

Any suggestions?

Thanks,

Andreas




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: readable-not-found
  2022-03-09 11:23 readable-not-found Andreas Röhler
@ 2022-03-09 11:51 ` tomas
  2022-03-09 12:20 ` readable-not-found Emanuel Berg via Users list for the GNU Emacs text editor
  1 sibling, 0 replies; 5+ messages in thread
From: tomas @ 2022-03-09 11:51 UTC (permalink / raw)
  To: help-gnu-emacs

[-- Attachment #1: Type: text/plain, Size: 622 bytes --]

On Wed, Mar 09, 2022 at 12:23:45PM +0100, Andreas Röhler wrote:
> Have the following load-test.el in some ~/testdir/ :
> 
> (if (file-readable-p "../test.el")
>   (load "../test.el" nil t))
> 
> (file-readable-p "../test.el") reports t, but evaluating the load-function
> sends:

This is probably because `load' doesn't look in the current
directory, but in the directories listed in `load-path'.

Usually that makes sense (usually, you don't want Emacs to
find different libraries just because you change your current
directory)

> Any suggestions?

What are you trying to achieve?

Cheers
-- 
t

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 195 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: readable-not-found
  2022-03-09 11:23 readable-not-found Andreas Röhler
  2022-03-09 11:51 ` readable-not-found tomas
@ 2022-03-09 12:20 ` Emanuel Berg via Users list for the GNU Emacs text editor
  2022-03-09 18:47   ` readable-not-found Andreas Röhler
  1 sibling, 1 reply; 5+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2022-03-09 12:20 UTC (permalink / raw)
  To: help-gnu-emacs

Andreas Röhler wrote:

> Have the following load-test.el in some ~/testdir/ :
>
> (if (file-readable-p "../test.el")
>   (load "../test.el" nil t))

(defun load-if-exists (file)
  (if (file-exists-p file)
      (load-file file)
    (message "The file %s does not exist." file) ))

-- 
underground experts united
https://dataswamp.org/~incal




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: readable-not-found
  2022-03-09 12:20 ` readable-not-found Emanuel Berg via Users list for the GNU Emacs text editor
@ 2022-03-09 18:47   ` Andreas Röhler
  2022-03-09 19:22     ` readable-not-found Emanuel Berg via Users list for the GNU Emacs text editor
  0 siblings, 1 reply; 5+ messages in thread
From: Andreas Röhler @ 2022-03-09 18:47 UTC (permalink / raw)
  To: help-gnu-emacs


Am 09.03.22 um 13:20 schrieb Emanuel Berg via Users list for the GNU 
Emacs text editor:
> Andreas Röhler wrote:
>
>> Have the following load-test.el in some ~/testdir/ :
>>
>> (if (file-readable-p "../test.el")
>>    (load "../test.el" nil t))
> (defun load-if-exists (file)
>    (if (file-exists-p file)
>        (load-file file)
>      (message "The file %s does not exist." file) ))
>

Didn't use load-file, as assumed designed for interactive use.

When looking into its definition, it's expand-file-name which does it:

(load (expand-file-name "../test.el") nil t)


Thanks all!




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: readable-not-found
  2022-03-09 18:47   ` readable-not-found Andreas Röhler
@ 2022-03-09 19:22     ` Emanuel Berg via Users list for the GNU Emacs text editor
  0 siblings, 0 replies; 5+ messages in thread
From: Emanuel Berg via Users list for the GNU Emacs text editor @ 2022-03-09 19:22 UTC (permalink / raw)
  To: help-gnu-emacs

Andreas Röhler wrote:

>>> (if (file-readable-p "../test.el")
>>>    (load "../test.el" nil t))
>>
>> (defun load-if-exists (file)
>>    (if (file-exists-p file)
>>        (load-file file)
>>      (message "The file %s does not exist." file) ))
>
> Didn't use load-file, as assumed designed for
> interactive use.

No, don't assume that ... on the contrary assume everything
works both ways, or at least the interactive -> Lisp way ...

Sometimes the docstring and/or byte compiler will tell you
otherwise, should be rare as that is a sign of whatever
badness so it needs to be stated, i.e. an explicit
exception to general fluidularity ...

> When looking into its definition, it's expand-file-name
> which does it:
>
> (load (expand-file-name "../test.el") nil t)

Indeed, gets the absolute path.

> Thanks all!

np :)

-- 
underground experts united
https://dataswamp.org/~incal




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-03-09 19:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-09 11:23 readable-not-found Andreas Röhler
2022-03-09 11:51 ` readable-not-found tomas
2022-03-09 12:20 ` readable-not-found Emanuel Berg via Users list for the GNU Emacs text editor
2022-03-09 18:47   ` readable-not-found Andreas Röhler
2022-03-09 19:22     ` readable-not-found Emanuel Berg via Users list for the GNU Emacs text editor

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.