aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2001-11-20 09:38:55 +0000
committerEli Zaretskii2001-11-20 09:38:55 +0000
commit48404d5a03bbbacab146e2ebb8cae606f62bdf05 (patch)
tree23dd78fec0b15898d431c7e97e6896bdc03ee561
parent0cdb3baa24e42ddb2fdbc4435ce4f7fc3a3c7c14 (diff)
downloademacs-48404d5a03bbbacab146e2ebb8cae606f62bdf05.tar.gz
emacs-48404d5a03bbbacab146e2ebb8cae606f62bdf05.zip
(dired-listing-switches): Mention in the doc string
that some switches are not supported by ls-lisp.el
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/dired.el5
2 files changed, 9 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c5b87637c9b..ce8cda14bed 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12001-11-20 Eli Zaretskii <eliz@is.elta.co.il>
2
3 * dired.el (dired-listing-switches): Mention in the doc string
4 that some switches are not supported by ls-lisp.el
5
12001-11-19 Stefan Monnier <monnier@cs.yale.edu> 62001-11-19 Stefan Monnier <monnier@cs.yale.edu>
2 7
3 * imenu.el (imenu--split-menu): Use dolist and copy-sequence. 8 * imenu.el (imenu--split-menu): Use dolist and copy-sequence.
diff --git a/lisp/dired.el b/lisp/dired.el
index 8ba712adf42..d7217b60f21 100644
--- a/lisp/dired.el
+++ b/lisp/dired.el
@@ -52,7 +52,10 @@
52 "*Switches passed to `ls' for dired. MUST contain the `l' option. 52 "*Switches passed to `ls' for dired. MUST contain the `l' option.
53May contain all other options that don't contradict `-l'; 53May contain all other options that don't contradict `-l';
54may contain even `F', `b', `i' and `s'. See also the variable 54may contain even `F', `b', `i' and `s'. See also the variable
55`dired-ls-F-marks-symlinks' concerning the `F' switch." 55`dired-ls-F-marks-symlinks' concerning the `F' switch.
56On systems such as MS-DOS and MS-Windows, which use `ls' emulation in Lisp,
57some of the `ls' switches are not supported; see the doc string of
58`insert-directory' on ls-lisp.el for more details."
56 :type 'string 59 :type 'string
57 :group 'dired) 60 :group 'dired)
58 61