> > Here is a fixed version of the macro. The diff is trivial. > > No diff was included, which, as usual, is a shame, because the macro has > changed slightly in the meantime. That makes no difference. ;-) And the diff is still trivial. ("The macro has changed slightly" == ?\040 became ?\s. Nothing more) > Your lines are also too wide; they should be less than 80 characters > wide. Oh, lines 92 chars are too wide for dired.el? Then why does it have lots of lines wider than 80 chars, including lines up to 103 chars wide? > Could you re-spin your change and submit a patch? diff -u dired.el dired-2019-06-25a-patched.el --- dired.el 2019-06-25 07:57:35.886354900 -0700 +++ dired-2019-06-25a-patched.el 2019-06-25 08:09:23.058466400 -0700 @@ -538,7 +538,7 @@ ;;; Macros must be defined before they are used, for the byte compiler. (defmacro dired-mark-if (predicate msg) - "Mark all files for which PREDICATE evals to non-nil. + "Mark files for PREDICATE, according to `dired-marker-char'. PREDICATE is evaluated on each line, with point at beginning of line. MSG is a noun phrase for the type of files being marked. It should end with a noun that can be pluralized by adding `s'. @@ -558,13 +558,11 @@ ""))) (goto-char (point-min)) (while (not (eobp)) - (if ,predicate - (progn - (delete-char 1) - (insert dired-marker-char) - (setq count (1+ count)))) + (when ,predicate + (unless (looking-at-p (char-to-string dired-marker-char)) + (delete-char 1) (insert dired-marker-char) (setq count (1+ count)))) (forward-line 1)) - (if ,msg (message "%s %s%s %s%s." + (when ,msg (message "%s %s%s %s%s" count ,msg (dired-plural-s count) ---- Actually, the _attached_ definition is much better than this - it's what I use in `dired+.el'. The value returned and the message indicate both the number matched and the number changed. And it has optional arg PLURAL, for irregular plurals (e.g. "directories"). But if you want this one you'll have to do your own line shortening, `diff', and adjustment of any callers you might to want to pass an irregular PLURAL form.