Mercurial > emacs
diff lisp/diff.el @ 7028:6915bf781a38
Pass operation to Ffind_file_name_handler.
| author | Karl Heuer <kwzh@gnu.org> |
|---|---|
| date | Fri, 22 Apr 1994 23:41:18 +0000 |
| parents | 8c667dc4566e |
| children | a4f0f421752e |
line wrap: on
line diff
--- a/lisp/diff.el Fri Apr 22 21:53:27 1994 +0000 +++ b/lisp/diff.el Fri Apr 22 23:41:18 1994 +0000 @@ -254,7 +254,7 @@ (defun diff-latest-backup-file (fn) ; actually belongs into files.el "Return the latest existing backup of FILE, or nil." - (let ((handler (find-file-name-handler fn))) + (let ((handler (find-file-name-handler fn 'diff-latest-backup-file))) (if handler (funcall handler 'diff-latest-backup-file fn) ;; First try simple backup, then the highest numbered of the
