diff options
author | Glenn Morris <rgm@gnu.org> | 2015-04-30 20:06:15 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2015-04-30 20:06:15 -0400 |
commit | ce7ff436ffd6d9ace7e8d89f4cc81c427407cfaf (patch) | |
tree | 247a8880fff37d8d3ac92eece43b36ad61402e8f /lisp/emacs-lisp/package.el | |
parent | e0d0ad2acce8a153f10ecbb84c51c6e0981e3c0c (diff) | |
download | emacs-ce7ff436ffd6d9ace7e8d89f4cc81c427407cfaf.tar.gz emacs-ce7ff436ffd6d9ace7e8d89f4cc81c427407cfaf.tar.bz2 emacs-ce7ff436ffd6d9ace7e8d89f4cc81c427407cfaf.zip |
Function declaration updates prompted by 'make check-declare'
* lisp/emacs-lisp/package.el (lm-homepage):
* lisp/gnus/gnus-util.el (iswitchb-read-buffer):
* lisp/gnus/mm-decode.el (libxml-parse-html-region):
* lisp/gnus/mml.el (libxml-parse-html-region):
* lisp/gnus/nnrss.el (libxml-parse-html-region):
* lisp/net/eww.el (libxml-parse-html-region):
* lisp/net/shr.el (libxml-parse-html-region):
* lisp/vc/vc-bzr.el (vc-annotate-convert-time):
* lisp/vc/vc-cvs.el (vc-annotate-convert-time):
* lisp/vc/vc-git.el (vc-annotate-convert-time):
* lisp/vc/vc-hg.el (vc-annotate-convert-time):
* lisp/vc/vc-mtn.el (vc-annotate-convert-time):
* lisp/vc/vc-rcs.el (vc-annotate-convert-time):
Update declaration.
Diffstat (limited to 'lisp/emacs-lisp/package.el')
-rw-r--r-- | lisp/emacs-lisp/package.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index db61ababd6d..c2c0f34d1ae 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el @@ -956,7 +956,7 @@ is wrapped around any parts requiring it." deps)))) (declare-function lm-header "lisp-mnt" (header)) -(declare-function lm-homepage "lisp-mnt" ()) +(declare-function lm-homepage "lisp-mnt" (&optional file)) (defun package-buffer-info () "Return a `package-desc' describing the package in the current buffer. |