From: Drew Adams <drew.adams@oracle.com>
To: Juri Linkov <juri@linkov.net>
Cc: 30938@debbugs.gnu.org
Subject: bug#30938: 27.0; `dired-do-create-files' etc.: do NOT always raise error if no files
Date: Wed, 28 Mar 2018 16:45:50 -0700 (PDT) [thread overview]
Message-ID: <70149736-0c90-4059-91d0-155144bf4abd@default> (raw)
In-Reply-To: <87605g7xpj.fsf@mail.linkov.net>
> > For example, `dired-do-isearch' could be called non-interactively
> > in a context where it should do nothing (or something else should
> > be done) if there are no marked files. Something like this is
> > better:
> >
> > (defun dired-do-isearch (&optional interactivep)
> > "Search for a string through all marked files using Isearch.
> > When invoked interactively, raise an error if no files are marked."
> > (interactive "p")
> > (multi-isearch-files
> > (dired-get-marked-files
> > nil nil 'dired-nondirectory-p nil interactivep)))
>
> Is there a better way than doing the same by adding such a formal arg
> to all 12 affected commands?
Are you asking whether adding an optional INTERACTIVEP arg to
commands that call `dired-get-marked-files', and passing that
as the 5th arg, is better than having them systematically raise
a `user-error' (i.e., even in the non-interactive case) when
`dired-get-marked-files' finds no marked files?
If so, yes; that was the point I was making in that mail.
There is not necessarily any user error - or any error at
all - when no files are marked (e.g., when the function
is called on a non-file-line part of the buffer).
That's what I've done in my code (dired+.el), for example:
;; Updated for Emacs 27-pretest-2 change in dired-get-marked-files signature.
;; dired-get-marked-files: Added optional arg ERROR-IF-NONE-P.
;; diredp-list-marked, diredp-insert-subdirs, dired-do-(i)search(-regexp),
;; dired-do-query-replace-regexp, dired-do-find-marked-files,
;; diredp-describe-marked-autofiles:
;; Added optional arg INTERACTIVEP.
;; Pass non-nil ERROR-IF-NONE-P to dired-get-marked-files when INTERACTIVEP.
;; (See Emacs bug #30938.)
Emacs has already updated those 13 commands (there's one
also in dired-x.el) to add the 5th arg to their calls to
`dired-get-marked-files'. The only further change needed
is to pass that arg as non-nil only when the command is
called interactively. It is only in the interactive case
that we can know (assume) that such an error should be
raised.
[Dunno whether any of the 15 _other_ commands that call
`dired-get-marked-files' need similar treatment, i.e.,
those where NO 5th arg is passed yet (in dired.el,
image-dired.el, epa-dired.el, thumbs.el, and message.el).]
next prev parent reply other threads:[~2018-03-28 23:45 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-25 16:36 bug#30938: 27.0; `dired-do-create-files' etc.: do NOT always raise error if no files Drew Adams
2018-03-25 16:45 ` Drew Adams
2018-03-28 20:27 ` Juri Linkov
2018-03-28 23:45 ` Drew Adams [this message]
2018-03-29 20:04 ` Juri Linkov
2018-03-29 20:25 ` Noam Postavsky
2018-03-30 4:01 ` Drew Adams
2018-03-30 4:01 ` Drew Adams
2018-03-30 7:57 ` Eli Zaretskii
2018-04-02 19:30 ` Juri Linkov
2022-04-21 13:20 ` Lars Ingebrigtsen
2022-04-21 15:01 ` Drew Adams
[not found] ` <<8111e8b0-a7fb-4de4-9371-fd69c74c46e5@default>
[not found] ` <<83lgeac7xs.fsf@gnu.org>
2018-03-30 15:01 ` Drew Adams
2018-03-30 15:30 ` Eli Zaretskii
[not found] ` <<<8111e8b0-a7fb-4de4-9371-fd69c74c46e5@default>
[not found] ` <<<83lgeac7xs.fsf@gnu.org>
[not found] ` <<ea1c9d9f-2405-4377-bd42-de7f020cf9d4@default>
[not found] ` <<83k1tt8ttp.fsf@gnu.org>
2018-03-30 15:43 ` Drew Adams
2018-03-30 16:07 ` Eli Zaretskii
[not found] ` <<<<8111e8b0-a7fb-4de4-9371-fd69c74c46e5@default>
[not found] ` <<<<83lgeac7xs.fsf@gnu.org>
[not found] ` <<<ea1c9d9f-2405-4377-bd42-de7f020cf9d4@default>
[not found] ` <<<83k1tt8ttp.fsf@gnu.org>
[not found] ` <<ceb6e79f-5f03-45a5-a7a4-5fe954661d5d@default>
[not found] ` <<83in9d8s4b.fsf@gnu.org>
2018-03-30 17:12 ` Drew Adams
2018-03-31 9:07 ` Eli Zaretskii
[not found] ` <<<<<8111e8b0-a7fb-4de4-9371-fd69c74c46e5@default>
[not found] ` <<<<<83lgeac7xs.fsf@gnu.org>
[not found] ` <<<<ea1c9d9f-2405-4377-bd42-de7f020cf9d4@default>
[not found] ` <<<<83k1tt8ttp.fsf@gnu.org>
[not found] ` <<<ceb6e79f-5f03-45a5-a7a4-5fe954661d5d@default>
[not found] ` <<<83in9d8s4b.fsf@gnu.org>
[not found] ` <<9b80ae9e-06e3-4217-89b1-eb8a3b0c93b8@default>
[not found] ` <<838ta88vfz.fsf@gnu.org>
2018-03-31 16:10 ` Drew Adams
2018-03-31 16:50 ` Eli Zaretskii
2018-03-25 16:50 ` Eli Zaretskii
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=70149736-0c90-4059-91d0-155144bf4abd@default \
--to=drew.adams@oracle.com \
--cc=30938@debbugs.gnu.org \
--cc=juri@linkov.net \
/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.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
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).