Don't invoke Dired with -R when reviewing packages

* lisp/emacs-lisp/package.el (package-review): Remove
potentially unportable "-R" switch when calling 'dired'.
This commit is contained in:
Philip Kaludercic 2026-02-13 23:52:01 +01:00
parent 36f35a774b
commit ee7c4ed5d8
No known key found for this signature in database

View file

@ -800,12 +800,8 @@ attached."
(insert-buffer-substring tmp-buf) (insert-buffer-substring tmp-buf)
(comment-region start (point)))))) (comment-region start (point))))))
t) t)
(?c (?c (view-file news) t)
(view-file news) (?b (dired pkg-dir) t)))))
t)
(?b
(dired pkg-dir "-R") ;FIXME: Is recursive dired portable?
t)))))
(declare-function dired-get-marked-files "dired") (declare-function dired-get-marked-files "dired")