diff options
| author | Richard M. Stallman <rms@gnu.org> | 1997-03-22 03:42:32 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1997-03-22 03:42:32 +0000 |
| commit | 7b3478a5e8fd1a37b810602a6fa754297537b7f0 (patch) | |
| tree | 985945061d9142363e55770bc71daaef9367d8d3 | |
| parent | 7ddb552454fda645e6ebabcc590282538d087c93 (diff) | |
| download | emacs-7b3478a5e8fd1a37b810602a6fa754297537b7f0.tar.gz | |
(recover-session): Add `t' to switches.
| -rw-r--r-- | lisp/files.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el index d554005b8fa..eabb70377cb 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -2417,7 +2417,8 @@ Then you'll be asked about a number of files to recover." (if (null auto-save-list-file-prefix) (error "You set `auto-save-list-file-prefix' to disable making session files")) (let ((ls-lisp-support-shell-wildcards t)) - (dired (concat auto-save-list-file-prefix "*"))) + (dired (concat auto-save-list-file-prefix "*") + (concat dired-listing-switches "t"))) (goto-char (point-min)) (or (looking-at "Move to the session you want to recover,") (let ((inhibit-read-only t)) |
