diff options
| author | Joakim Verona | 2013-09-12 07:57:09 +0200 |
|---|---|---|
| committer | Joakim Verona | 2013-09-12 07:57:09 +0200 |
| commit | 49b24704f6762c8600cdcd829d8874ed4a1a69c8 (patch) | |
| tree | f5385407000dfe86331fe34325c2a896e1293312 | |
| parent | 7701e0724215b82d2f635c19d7e7f2a9863e687c (diff) | |
| parent | 16d9f8966f7aa73f9e7bae8e208c7a35c03cb54d (diff) | |
| download | emacs-49b24704f6762c8600cdcd829d8874ed4a1a69c8.tar.gz emacs-49b24704f6762c8600cdcd829d8874ed4a1a69c8.zip | |
merge from trunk
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/calc/calc-help.el | 2 | ||||
| -rw-r--r-- | lisp/progmodes/cperl-mode.el | 2 | ||||
| -rw-r--r-- | lisp/vc/ediff.el | 2 |
4 files changed, 7 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index beeb53d5c31..6d7a87f0915 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2013-09-12 Glenn Morris <rgm@gnu.org> | 1 | 2013-09-12 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * calc/calc-help.el (Info-goto-node): | ||
| 4 | * progmodes/cperl-mode.el (Info-find-node): | ||
| 5 | * vc/ediff.el (Info-goto-node): Update declarations. | ||
| 6 | |||
| 3 | * vc/vc-bzr.el (vc-exec-after): Remove unused declaration. | 7 | * vc/vc-bzr.el (vc-exec-after): Remove unused declaration. |
| 4 | (vc-compilation-mode): Declare. | 8 | (vc-compilation-mode): Declare. |
| 5 | (vc-bzr-pull): Require vc-dispatcher. | 9 | (vc-bzr-pull): Require vc-dispatcher. |
diff --git a/lisp/calc/calc-help.el b/lisp/calc/calc-help.el index 2b7b56c3f89..641453568ca 100644 --- a/lisp/calc/calc-help.el +++ b/lisp/calc/calc-help.el | |||
| @@ -30,7 +30,7 @@ | |||
| 30 | (require 'calc-macs) | 30 | (require 'calc-macs) |
| 31 | 31 | ||
| 32 | ;; Declare functions which are defined elsewhere. | 32 | ;; Declare functions which are defined elsewhere. |
| 33 | (declare-function Info-goto-node "info" (nodename &optional fork)) | 33 | (declare-function Info-goto-node "info" (nodename &optional fork strict-case)) |
| 34 | (declare-function Info-last "info" ()) | 34 | (declare-function Info-last "info" ()) |
| 35 | 35 | ||
| 36 | 36 | ||
diff --git a/lisp/progmodes/cperl-mode.el b/lisp/progmodes/cperl-mode.el index cc6c8234dd2..8a7d1e77bd2 100644 --- a/lisp/progmodes/cperl-mode.el +++ b/lisp/progmodes/cperl-mode.el | |||
| @@ -6535,7 +6535,7 @@ side-effect of memorizing only. Examples in `cperl-style-examples'." | |||
| 6535 | (eval '(mode-compile)))) ; Avoid a warning | 6535 | (eval '(mode-compile)))) ; Avoid a warning |
| 6536 | 6536 | ||
| 6537 | (declare-function Info-find-node "info" | 6537 | (declare-function Info-find-node "info" |
| 6538 | (filename nodename &optional no-going-back)) | 6538 | (filename nodename &optional no-going-back strict-case)) |
| 6539 | 6539 | ||
| 6540 | (defun cperl-info-buffer (type) | 6540 | (defun cperl-info-buffer (type) |
| 6541 | ;; Returns buffer with documentation. Creates if missing. | 6541 | ;; Returns buffer with documentation. Creates if missing. |
diff --git a/lisp/vc/ediff.el b/lisp/vc/ediff.el index 9ab592587c9..fc47bf0fc10 100644 --- a/lisp/vc/ediff.el +++ b/lisp/vc/ediff.el | |||
| @@ -1481,7 +1481,7 @@ When called interactively, displays the version." | |||
| 1481 | (format "Ediff %s of %s" ediff-version ediff-date))) | 1481 | (format "Ediff %s of %s" ediff-version ediff-date))) |
| 1482 | 1482 | ||
| 1483 | ;; info is run first, and will autoload info.el. | 1483 | ;; info is run first, and will autoload info.el. |
| 1484 | (declare-function Info-goto-node "info" (nodename &optional fork)) | 1484 | (declare-function Info-goto-node "info" (nodename &optional fork strict-case)) |
| 1485 | 1485 | ||
| 1486 | ;;;###autoload | 1486 | ;;;###autoload |
| 1487 | (defun ediff-documentation (&optional node) | 1487 | (defun ediff-documentation (&optional node) |