diff options
| author | Glenn Morris | 2009-10-24 03:43:47 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-10-24 03:43:47 +0000 |
| commit | d270305a6543f4f86ef84107e049ae831e7df081 (patch) | |
| tree | 3c8342da28a47bbe1e39068c92ece5397ea3e9fc | |
| parent | 12ea3d6524e935e94ddbaece1dc4fce2f31fbf04 (diff) | |
| download | emacs-d270305a6543f4f86ef84107e049ae831e7df081.tar.gz emacs-d270305a6543f4f86ef84107e049ae831e7df081.zip | |
Convert comment about autoload into autoload comment.
(vc-responsible-backend): Fix declaration.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/vc-hooks.el | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8363cb40bda..fe7d42bd3cc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2009-10-24 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * vc-hooks.el (vc-responsible-backend): Fix declaration. | ||
| 4 | |||
| 1 | 2009-10-24 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2009-10-24 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * minibuffer.el (completion--embedded-envvar-table): Fix last change. | 7 | * minibuffer.el (completion--embedded-envvar-table): Fix last change. |
diff --git a/lisp/vc-hooks.el b/lisp/vc-hooks.el index 7e85ed89fd2..e8e3d743a2a 100644 --- a/lisp/vc-hooks.el +++ b/lisp/vc-hooks.el | |||
| @@ -205,7 +205,7 @@ individually should stay local." | |||
| 205 | ;; Tell Emacs about this new kind of minor mode | 205 | ;; Tell Emacs about this new kind of minor mode |
| 206 | ;; (add-to-list 'minor-mode-alist '(vc-mode vc-mode)) | 206 | ;; (add-to-list 'minor-mode-alist '(vc-mode vc-mode)) |
| 207 | 207 | ||
| 208 | ;; Autoload if this file no longer dumped. | 208 | ;;;###autoload |
| 209 | (put 'vc-mode 'risky-local-variable t) | 209 | (put 'vc-mode 'risky-local-variable t) |
| 210 | (make-variable-buffer-local 'vc-mode) | 210 | (make-variable-buffer-local 'vc-mode) |
| 211 | (put 'vc-mode 'permanent-local t) | 211 | (put 'vc-mode 'permanent-local t) |
| @@ -1019,7 +1019,7 @@ current, and kill the buffer that visits the link." | |||
| 1019 | 1019 | ||
| 1020 | (defalias 'vc-menu-map vc-menu-map) | 1020 | (defalias 'vc-menu-map vc-menu-map) |
| 1021 | 1021 | ||
| 1022 | (declare-function vc-responsible-backend "vc" (file &optional register)) | 1022 | (declare-function vc-responsible-backend "vc" (file)) |
| 1023 | 1023 | ||
| 1024 | (defun vc-menu-map-filter (orig-binding) | 1024 | (defun vc-menu-map-filter (orig-binding) |
| 1025 | (if (and (symbolp orig-binding) (fboundp orig-binding)) | 1025 | (if (and (symbolp orig-binding) (fboundp orig-binding)) |