From f7da6740cab88c131a7418e08830f35afbe1c5b3 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 16 Feb 1994 18:23:16 +0000 Subject: [PATCH] (recover-file): Call auto-save-file-name-p correctly. --- lisp/files.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/files.el b/lisp/files.el index 00cc617d927..5673aeac8b5 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -1822,7 +1822,8 @@ beginning and `after-revert-hook' at the end." (list (read-file-name "Recover file: " file-dir nil nil file-name)))) (setq file (expand-file-name file)) - (if (auto-save-file-name-p file) (error "%s is an auto-save file" file)) + (if (auto-save-file-name-p (file-name-nondirectory file)) + (error "%s is an auto-save file" file)) (let ((file-name (let ((buffer-file-name file)) (make-auto-save-file-name)))) (cond ((not (file-newer-than-file-p file-name file)) -- 2.39.5