From: Richard M. Stallman Date: Wed, 4 Oct 1995 19:42:04 +0000 (+0000) Subject: (recover-session): Use auto-save-list-file-prefix. X-Git-Tag: emacs-19.34~2742 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5bcb0278639c734589fd281a362b12c8a9f5baa2;p=emacs.git (recover-session): Use auto-save-list-file-prefix. --- diff --git a/lisp/files.el b/lisp/files.el index 1fe0265431c..e9f9ed30c28 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -2153,7 +2153,7 @@ previous sessions that you could recover from. To choose one, move point to the proper line and then type C-c C-c. Then you'll be asked about a number of files to recover." (interactive) - (dired "~/.save*") + (dired (concat auto-save-list-file-prefix "*")) (goto-char (point-min)) (or (looking-at "Move to the session you want to recover,") (let ((inhibit-read-only t))