diff options
| author | Joakim Verona | 2013-09-12 09:06:54 +0200 |
|---|---|---|
| committer | Joakim Verona | 2013-09-12 09:06:54 +0200 |
| commit | 376499bab806ced18cc52fd7101a2eb70a61a9cc (patch) | |
| tree | 676b02202e5bfe436683dac254b25462c061812c | |
| parent | 7cb9e4b1d146064cee0fd9ebaddf094a05819670 (diff) | |
| parent | 4a503aef7e09570c24ec7f68ddc8cb7470cc17ef (diff) | |
| download | emacs-376499bab806ced18cc52fd7101a2eb70a61a9cc.tar.gz emacs-376499bab806ced18cc52fd7101a2eb70a61a9cc.zip | |
merge from trunk
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/play/spook.el | 4 | ||||
| -rw-r--r-- | lisp/vc/vc-dispatcher.el | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e4bf56d24d7..cdf601e6259 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -15,6 +15,8 @@ | |||
| 15 | * progmodes/cperl-mode.el (Info-find-node): | 15 | * progmodes/cperl-mode.el (Info-find-node): |
| 16 | * vc/ediff.el (Info-goto-node): Update declarations. | 16 | * vc/ediff.el (Info-goto-node): Update declarations. |
| 17 | 17 | ||
| 18 | * vc/vc-dispatcher.el (vc-dir-refresh): Declare. | ||
| 19 | |||
| 18 | * vc/vc-bzr.el (vc-compilation-mode): Declare. | 20 | * vc/vc-bzr.el (vc-compilation-mode): Declare. |
| 19 | (vc-bzr-pull): Require vc-dispatcher. | 21 | (vc-bzr-pull): Require vc-dispatcher. |
| 20 | * vc/vc-git.el (vc-compilation-mode): Declare. | 22 | * vc/vc-git.el (vc-compilation-mode): Declare. |
diff --git a/lisp/play/spook.el b/lisp/play/spook.el index 08c31d3878b..d2ecd3a62cc 100644 --- a/lisp/play/spook.el +++ b/lisp/play/spook.el | |||
| @@ -69,10 +69,6 @@ | |||
| 69 | "Checking authorization..." | 69 | "Checking authorization..." |
| 70 | "Checking authorization...Approved")) | 70 | "Checking authorization...Approved")) |
| 71 | 71 | ||
| 72 | ;; Note: the implementation that used to take up most of this file has been | ||
| 73 | ;; cleaned up, generalized, gratuitously broken by esr, and now resides in | ||
| 74 | ;; cookie1.el. | ||
| 75 | |||
| 76 | (provide 'spook) | 72 | (provide 'spook) |
| 77 | 73 | ||
| 78 | ;;; spook.el ends here | 74 | ;;; spook.el ends here |
diff --git a/lisp/vc/vc-dispatcher.el b/lisp/vc/vc-dispatcher.el index 7888752553e..62fb72d0fbc 100644 --- a/lisp/vc/vc-dispatcher.el +++ b/lisp/vc/vc-dispatcher.el | |||
| @@ -398,6 +398,8 @@ Display the buffer in some window, but don't select it." | |||
| 398 | (set (make-local-variable 'compilation-error-regexp-alist) | 398 | (set (make-local-variable 'compilation-error-regexp-alist) |
| 399 | error-regexp-alist))) | 399 | error-regexp-alist))) |
| 400 | 400 | ||
| 401 | (declare-function vc-dir-refresh "vc-dir" ()) | ||
| 402 | |||
| 401 | (defun vc-set-async-update (process-buffer) | 403 | (defun vc-set-async-update (process-buffer) |
| 402 | "Set a `vc-exec-after' action appropriate to the current buffer. | 404 | "Set a `vc-exec-after' action appropriate to the current buffer. |
| 403 | This action will update the current buffer after the current | 405 | This action will update the current buffer after the current |