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 | d7a33b505d53a9a86207a432489302456757df0a (patch) | |
tree | 492241d9cec2b55d319b5d8b5e67cd11eba881a6 /lisp/files.el | |
parent | 5127b93135fe62fa6fd0ef1361202a16c4709b69 (diff) | |
download | emacs-d7a33b505d53a9a86207a432489302456757df0a.tar.gz |
(recover-session): Add `t' to switches.
Diffstat (limited to 'lisp/files.el')
-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)) |