From: Richard M. Stallman Date: Sun, 13 Mar 1994 01:12:41 +0000 (+0000) Subject: (diff-latest-backup-file): Call file name handler properly. X-Git-Tag: emacs-19.34~9531 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6d0d0e8d86c59b7d71b55a8d8827885e0ddfa882;p=emacs.git (diff-latest-backup-file): Call file name handler properly. --- diff --git a/lisp/diff.el b/lisp/diff.el index a6793dca51f..8de44211ffd 100644 --- a/lisp/diff.el +++ b/lisp/diff.el @@ -256,7 +256,7 @@ The backup file is the first file given to `diff'." "Return the latest existing backup of FILE, or nil." (let ((handler (find-file-name-handler fn))) (if handler - (funcall handler fn) + (funcall handler 'diff-latest-backup-file fn) ;; First try simple backup, then the highest numbered of the ;; numbered backups. ;; Ignore the value of version-control because we look for existing