diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2004-03-28 17:38:17 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2004-03-28 17:38:17 +0000 |
commit | 1e87be1b83660c2efda242ea1711961d067b3125 (patch) | |
tree | 42c046ac91d58792c060df83228d0a257714639d /lisp/vc-hooks.el | |
parent | d97c8375b8b95cfab21e0a8e9340c628df053f80 (diff) | |
download | emacs-1e87be1b83660c2efda242ea1711961d067b3125.tar.gz |
(vc-file-not-found-hook): Fix typo. From lorentey@elte.hu (L?rentey K�ly).
Diffstat (limited to 'lisp/vc-hooks.el')
-rw-r--r-- | lisp/vc-hooks.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/vc-hooks.el b/lisp/vc-hooks.el index 2f4dc71590f..f08c5fc1dfa 100644 --- a/lisp/vc-hooks.el +++ b/lisp/vc-hooks.el @@ -6,7 +6,7 @@ ;; Author: FSF (see vc.el for full credits) ;; Maintainer: Andre Spiegel <spiegel@gnu.org> -;; $Id: vc-hooks.el,v 1.163 2004/03/23 20:59:19 monnier Exp $ +;; $Id: vc-hooks.el,v 1.164 2004/03/26 06:06:39 spiegel Exp $ ;; This file is part of GNU Emacs. @@ -772,7 +772,7 @@ Used in `find-file-not-found-functions'." ;; from a previous visit. (vc-file-clearprops buffer-file-name) (let ((backend (vc-backend buffer-file-name))) - (if backend (vc-call-backend backend find-file-not-found-hook)))) + (if backend (vc-call-backend backend 'find-file-not-found-hook)))) (defun vc-default-find-file-not-found-hook (backend) (if (yes-or-no-p |