diff options
| author | Karoly Lorentey | 2004-03-28 07:15:31 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2004-03-28 07:15:31 +0000 |
| commit | a38213dc5443326de07cd41575859361c64596b0 (patch) | |
| tree | 1d2c3aeffb446b9a35cc730cb8199008f8a13a3b | |
| parent | 03a1d6bdc90882979408ba223453b50dd6f3b9a6 (diff) | |
| download | emacs-a38213dc5443326de07cd41575859361c64596b0.tar.gz emacs-a38213dc5443326de07cd41575859361c64596b0.zip | |
Fix bootstrap problems in CVS.
lisp/vc-hooks.el (vc-file-not-found-hook): Fix assumed typo.
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-127
| -rw-r--r-- | lisp/vc-hooks.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc-hooks.el b/lisp/vc-hooks.el index e6bf15653d8..f08c5fc1dfa 100644 --- a/lisp/vc-hooks.el +++ b/lisp/vc-hooks.el | |||
| @@ -772,7 +772,7 @@ Used in `find-file-not-found-functions'." | |||
| 772 | ;; from a previous visit. | 772 | ;; from a previous visit. |
| 773 | (vc-file-clearprops buffer-file-name) | 773 | (vc-file-clearprops buffer-file-name) |
| 774 | (let ((backend (vc-backend buffer-file-name))) | 774 | (let ((backend (vc-backend buffer-file-name))) |
| 775 | (if backend (vc-call-backend backend find-file-not-found-hook)))) | 775 | (if backend (vc-call-backend backend 'find-file-not-found-hook)))) |
| 776 | 776 | ||
| 777 | (defun vc-default-find-file-not-found-hook (backend) | 777 | (defun vc-default-find-file-not-found-hook (backend) |
| 778 | (if (yes-or-no-p | 778 | (if (yes-or-no-p |