aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2025-09-13 13:47:04 +0300
committerEli Zaretskii2025-09-13 13:47:04 +0300
commit47454566772479c706ea53b4ee9ad5caaafd9130 (patch)
treeef1593fc500f54249c341e5124a7da4134b33f48
parent0832e5fec569d3247f83a2dbbeae2057a826db71 (diff)
downloademacs-47454566772479c706ea53b4ee9ad5caaafd9130.tar.gz
emacs-47454566772479c706ea53b4ee9ad5caaafd9130.zip
; * lisp/dired-x.el (dired-find-subdir): Doc fix (bug#79440).
-rw-r--r--lisp/dired-x.el18
1 files changed, 8 insertions, 10 deletions
diff --git a/lisp/dired-x.el b/lisp/dired-x.el
index 364e8af5299..fc65a25e897 100644
--- a/lisp/dired-x.el
+++ b/lisp/dired-x.el
@@ -188,16 +188,14 @@ When nil, don't show messages."
188 :group 'dired-x) 188 :group 'dired-x)
189 189
190(defcustom dired-find-subdir nil ; t is pretty near to DWIM... 190(defcustom dired-find-subdir nil ; t is pretty near to DWIM...
191 "If non-nil, Dired always finds a directory in a buffer of its own. 191 "If nil, Dired always finds a directory in a buffer of its own.
192If nil, Dired finds the directory as a subdirectory in some other buffer 192If non-nil, Dired finds the directory as a subdirectory in some
193if it is present as one. 193other buffer if it is present as one.
194 194
195If there are several Dired buffers for a directory, the most recently 195If the value is non-nil, and there are several Dired buffers for a
196used is chosen. 196directory, the most recently used is chosen. Dired avoids switching
197 197to the current buffer, so that if you have a normal and a wildcard
198Dired avoids switching to the current buffer, so that if you have 198buffer for the same directory, \\[dired] will toggle between those two."
199a normal and a wildcard buffer for the same directory, \\[dired] will
200toggle between those two."
201 :type 'boolean 199 :type 'boolean
202 :group 'dired-x) 200 :group 'dired-x)
203 201