diff options
| author | Eli Zaretskii | 2003-11-01 17:48:54 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2003-11-01 17:48:54 +0000 |
| commit | cfc8b2640f4ae202cc437ed18f46aff2b94066d5 (patch) | |
| tree | fcfdf2f924d53c012a169405d9b35709d3694efc | |
| parent | cdddbfd273edd13323019898a74ba36f9cfe5e89 (diff) | |
| download | emacs-cfc8b2640f4ae202cc437ed18f46aff2b94066d5.tar.gz emacs-cfc8b2640f4ae202cc437ed18f46aff2b94066d5.zip | |
(dired-ls-sorting-switches): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/dired.el | 9 |
2 files changed, 12 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 11fad844e80..b0e7c8aac21 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2003-11-01 era@iki.fi <era@iki.fi> (tiny change) | ||
| 2 | |||
| 3 | * dired.el (dired-ls-sorting-switches): Doc fix. | ||
| 4 | |||
| 1 | 2003-11-01 Oliver Scholz <epameinondas@gmx.de> | 5 | 2003-11-01 Oliver Scholz <epameinondas@gmx.de> |
| 2 | 6 | ||
| 3 | * emacs-lisp/rx.el (rx-or): Fix the case of | 7 | * emacs-lisp/rx.el (rx-or): Fix the case of |
diff --git a/lisp/dired.el b/lisp/dired.el index c3c4188aba7..b7fe389827b 100644 --- a/lisp/dired.el +++ b/lisp/dired.el | |||
| @@ -2770,7 +2770,14 @@ Thus, use \\[backward-page] to find the beginning of a group of errors." | |||
| 2770 | ;; So anything that does not contain these is sort "by name". | 2770 | ;; So anything that does not contain these is sort "by name". |
| 2771 | 2771 | ||
| 2772 | (defvar dired-ls-sorting-switches "SXU" | 2772 | (defvar dired-ls-sorting-switches "SXU" |
| 2773 | "String of `ls' switches (single letters) except `t' that influence sorting.") | 2773 | "String of `ls' switches \(single letters\) except `t' that influence sorting. |
| 2774 | |||
| 2775 | This indicates to Dired which option switches to watch out for because they | ||
| 2776 | will change the sorting order behavior of `ls'. | ||
| 2777 | |||
| 2778 | To change the default sorting order \(e.g. add a `-v' option\), see the | ||
| 2779 | variable `dired-listing-switches'. To temporarily override the listing | ||
| 2780 | format, use `\\[universal-argument] \\[dired]'.") | ||
| 2774 | 2781 | ||
| 2775 | (defvar dired-sort-by-date-regexp | 2782 | (defvar dired-sort-by-date-regexp |
| 2776 | (concat "^-[^" dired-ls-sorting-switches | 2783 | (concat "^-[^" dired-ls-sorting-switches |