[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: master b8d4242e8bd 1/2: New user option 'shell-command-guess-functio
|
From: |
Juri Linkov |
|
Subject: |
Re: master b8d4242e8bd 1/2: New user option 'shell-command-guess-functions' (bug#18132) |
|
Date: |
Thu, 30 Nov 2023 19:22:03 +0200 |
|
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/30.0.50 (x86_64-pc-linux-gnu) |
>> ELC+ELN ../lisp/simple.elc
>> In end of data:
>> simple.el:4286:35: Warning: the function ‘shell-command-guess’ is not
>> known to be defined.
>>
>> Maybe you want to declare that function? This is with Emacs 30
>> (a811846879) on macOS.
>
> Same as previously: recompile once more, and the warning will be gone.
>
> There's no problem here.
I still see this warning on bootstrap:
In end of data:
simple.el:4286:35: Warning: the function `shell-command-guess' is not known
to be defined.
I expected that ;;;###autoload will add it to the global loaddefs.el,
and only ;;;###dired-autoload will add it to dired-loaddefs.el.
But actually ;;;###autoload adds it to dired-loaddefs.el.
I don't know if there is a way to override this only for one autoload:
;; generated-autoload-file: "dired-loaddefs.el"
Something like using ;;;###global-autoload?