From 4d49551aeef090cb8ec3dcaccf72082ad45d0cb2 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Fri, 27 Feb 1998 22:13:26 +0000 Subject: [PATCH] (set-visited-file-name): Don't call backup-enable-predicate when buffer-file-name is nil. --- lisp/files.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/files.el b/lisp/files.el index e1c80a6ef6..a3ea8adac2 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -1735,7 +1735,8 @@ the old visited file has been renamed to the new name FILENAME." (kill-local-variable 'vc-mode) ;; Turn off backup files for certain file names. ;; Since this is a permanent local, the major mode won't eliminate it. - (and (not (funcall backup-enable-predicate buffer-file-name)) + (and buffer-file-name + (not (funcall backup-enable-predicate buffer-file-name)) (progn (make-local-variable 'backup-inhibited) (setq backup-inhibited t))) -- 2.39.2