From: 2QdxY4RzWzUUiLuE@potatochowder.com
To: help-gnu-emacs@gnu.org
Subject: Re: Better way to make sure external command exists in the system?
Date: Fri, 19 Mar 2021 07:16:00 -0700 [thread overview]
Message-ID: <YFSyINIcVZ7ONzIa@scrozzle> (raw)
In-Reply-To: <m1im5nnt4h.fsf@yahoo.es>
On 2021-03-19 at 14:57:34 +0100,
Daniel Martín <mardani29@yahoo.es> wrote:
> Jean Louis <bugs@gnu.support> writes:
>
> > I have changed the OS on one computer and noticed that my Emacs Lisp
> > programs use external commands like: mailutils, mail, pandoc,
> > markdown, and others. Sometimes I was hard coding the path names like
> > /usr/local/bin and now some commands changed to /usr/bin
> >
> > And some functions should not even run if external command does not
> > exist. I would even like to stop loading the .el program if necessary
> > external programs do not exist in the system.
> >
> > For that reason I would do some changes:
> >
> > - instead of hard coding the program name within quotes, I will use
> > variable. Instead of (shell-command "mogrify ...") I will rather use
> > something like (shell-command (format "%s ..." mogrify-command))
> >
> > - variables for commands I would place at beginning of programs
> >
>
> Yes, I think that using a variable instead of a hardcoded string is
> recommended.
>
> > - before variables get defined, I would use `executable-find' but I
> > would like for the program loading to fail if those external
> > programs cannot be found.
>
> Why do you think that checking for the existence of programs on load is
> better? I think it would slow down loading the module, and the benefits
> are not clear to me. For example, the Elisp module may still be useful
> even if it cannot call external programs.
>
> Why is it better than simply calling `executable-find' when invoking a
> command that depends on an external program?
Using executable-find at load time is better because modules are only
loaded once, but the functionality inside the modules is executed
repeatedly. Personally, my emacs.el loads lots of stuff
unconditionally, because I usually only start Emacs when I start my X
session, which is already time consuming. Anything I don't load at that
time only delays me later.
And if every function in a module is a wrapper around, say, mogrify,
then why shouldn't I verfiy that mogrify exists before I load the
module? (Obviously, there are a number of user- and application-
interface questions to be answered, but there are definitely modules
that can't do anything (except report failure) without their associated
external dependencies.)
next prev parent reply other threads:[~2021-03-19 14:16 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-18 12:13 Better way to make sure external command exists in the system? Jean Louis
2021-03-19 13:57 ` Daniel Martín
2021-03-19 14:16 ` 2QdxY4RzWzUUiLuE [this message]
2021-03-21 14:10 ` Jean Louis
2021-03-21 17:17 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-03-21 14:07 ` Jean Louis
2021-03-21 17:16 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-03-23 8:02 ` Jean Louis
2021-03-23 9:56 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-03-23 10:13 ` Jean Louis
2021-03-25 15:01 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-03-25 15:17 ` Jean Louis
2021-03-25 20:47 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-03-25 20:56 ` Jean Louis
2021-03-25 21:10 ` Emanuel Berg via Users list for the GNU Emacs text editor
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=YFSyINIcVZ7ONzIa@scrozzle \
--to=2qdxy4rzwzuuilue@potatochowder.com \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).