summaryrefslogtreecommitdiff
path: root/lisp/dired.el
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2021-08-26 16:12:17 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2021-08-26 16:12:17 +0200
commite4ec39e52d5fb42b777a07e2c6a55397b5916458 (patch)
tree82e97fd6abe2ae85e4852095f28f0eee10025791 /lisp/dired.el
parentfc4d3eea5ad675fe87d03cb0d16f8a33c3177e95 (diff)
downloademacs-e4ec39e52d5fb42b777a07e2c6a55397b5916458.tar.gz
emacs-e4ec39e52d5fb42b777a07e2c6a55397b5916458.tar.bz2
emacs-e4ec39e52d5fb42b777a07e2c6a55397b5916458.zip
Make dired-chmod-program obsolete
* lisp/dired.el (dired-chmod-program): Make into a defvar and make obsolete (bug#50190). * lisp/net/ange-ftp.el (ange-ftp-process-file): Remove usage of dired-chmod-program.
Diffstat (limited to 'lisp/dired.el')
-rw-r--r--lisp/dired.el7
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/dired.el b/lisp/dired.el
index 950323f366a..958677cd0c7 100644
--- a/lisp/dired.el
+++ b/lisp/dired.el
@@ -137,10 +137,9 @@ For more details, see Info node `(emacs)ls in Lisp'."
(const :tag "Do not use --dired" nil)
(other :tag "Always use --dired" t)))
-(defcustom dired-chmod-program "chmod"
- "Name of chmod command (usually `chmod')."
- :group 'dired
- :type 'file)
+(defvar dired-chmod-program "chmod"
+ "Name of chmod command (usually `chmod').")
+(make-obsolete-variable 'dired-chmod-program nil "28.1")
(defcustom dired-touch-program "touch"
"Name of touch command (usually `touch')."