diff options
| author | Glenn Morris | 2008-05-15 03:32:23 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-05-15 03:32:23 +0000 |
| commit | 7264c6b80201157f23634e434b57d93b88d02ae2 (patch) | |
| tree | 2140094a15f181355419780f3354613f18bd2725 | |
| parent | 1371348a3098d96c1c22aca32c4d3dfe03b4702c (diff) | |
| download | emacs-7264c6b80201157f23634e434b57d93b88d02ae2.tar.gz emacs-7264c6b80201157f23634e434b57d93b88d02ae2.zip | |
(vc-directory-resynch-file): Fix declaration.
| -rw-r--r-- | lisp/ChangeLog | 10 | ||||
| -rw-r--r-- | lisp/vc-hooks.el | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0e30e7d88f2..fe27f9e37bc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,13 @@ | |||
| 1 | 2008-05-15 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * vc-hooks.el (vc-directory-resynch-file): Fix declaration. | ||
| 4 | |||
| 5 | * org/org-exp.el (org-infojs-options-inbuffer-template): | ||
| 6 | Fix declaration. | ||
| 7 | |||
| 8 | * progmodes/cc-mode.el (declare-function): Add compat definition. | ||
| 9 | (awk-mode-syntax-table, c-awk-unstick-NL-prop): Declare for compiler. | ||
| 10 | |||
| 1 | 2008-05-14 Eric S. Raymond <esr@snark.thyrsus.com> | 11 | 2008-05-14 Eric S. Raymond <esr@snark.thyrsus.com> |
| 2 | 12 | ||
| 3 | * vc-dispatcher.el (vc-dispatcher-selection): Change the returned | 13 | * vc-dispatcher.el (vc-dispatcher-selection): Change the returned |
diff --git a/lisp/vc-hooks.el b/lisp/vc-hooks.el index f9b82aab497..ed44eba3498 100644 --- a/lisp/vc-hooks.el +++ b/lisp/vc-hooks.el | |||
| @@ -745,7 +745,7 @@ Before doing that, check if there are any old backups and get rid of them." | |||
| 745 | (vc-call-backend backend 'make-version-backups-p file) | 745 | (vc-call-backend backend 'make-version-backups-p file) |
| 746 | (vc-make-version-backup file))))) | 746 | (vc-make-version-backup file))))) |
| 747 | 747 | ||
| 748 | (declare-function vc-directory-resynch-file "vc" (file)) | 748 | (declare-function vc-directory-resynch-file "vc-dispatcher" (&optional fname)) |
| 749 | 749 | ||
| 750 | (defun vc-after-save () | 750 | (defun vc-after-save () |
| 751 | "Function to be called by `basic-save-buffer' (in files.el)." | 751 | "Function to be called by `basic-save-buffer' (in files.el)." |