From: Drew Adams <drew.adams@oracle.com>
To: 29842@debbugs.gnu.org
Subject: bug#29842: 27.0; `dired-change-marks': args should not be optional
Date: Sun, 24 Dec 2017 10:30:54 -0800 (PST) [thread overview]
Message-ID: <bafa3d47-2b75-422a-85d5-feaa9a97bfb7@default> (raw)
In-Reply-To: <b6b4e366-2b7d-4032-8ad0-546372181bd5@default>
Furthermore, the code should perhaps not just call
`ding' if you hit RET. Instead of this:
(if (or (eq old ?\r) (eq new ?\r))
(ding)
...)
it should perhaps do something like this:
(unless (char-displayable-p old)
(error "Not a displayable character: `%c'" old))
(unless (char-displayable-p new)
(error "Not a displayable character: `%c'" new))
The current code predates the existence of
`char-displayable-p'.
(Yes, that's a different bug, but perhaps it can be
taken care of in the context of this report. If not,
don't worry about it.)
next prev parent reply other threads:[~2017-12-24 18:30 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-24 17:58 bug#29842: 27.0; `dired-change-marks': args should not be optional Drew Adams
2017-12-24 18:30 ` Drew Adams [this message]
2017-12-28 13:18 ` Tino Calancha
2017-12-28 23:57 ` Drew Adams
2020-01-19 15:02 ` Stefan Kangas
2017-12-28 13:14 ` Tino Calancha
2020-01-19 14:45 ` Stefan Kangas
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=bafa3d47-2b75-422a-85d5-feaa9a97bfb7@default \
--to=drew.adams@oracle.com \
--cc=29842@debbugs.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.
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).