[gnus git] branch master updated: m0-13-8-g5423dd5 =1= dgnushack.el (declare-function): Simplify
Katsumi Yamaoka <[email protected]> Thu, 07 May 2015 09:16:07 +0200
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 5423dd5086cd6f2333a8aad8048d0dd687fa14ec (commit)
from 9e2d18b698808b3a1e80add234e900cdf673534f (commit)
- Log -----------------------------------------------------------------
commit 5423dd5086cd6f2333a8aad8048d0dd687fa14ec
Author: Katsumi Yamaoka <[email protected]>
Date: Thu May 7 07:15:59 2015 +0000
dgnushack.el (declare-function): Simplify
diff --git a/lisp/dgnushack.el b/lisp/dgnushack.el
index 404ee12..59a234c 100644
--- a/lisp/dgnushack.el
+++ b/lisp/dgnushack.el
@@ -28,8 +28,8 @@
(when (featurep 'xemacs)
(defmacro declare-function (fn file &optional arglist fileonly)
- `(eval-when-compile
- (unless (fboundp ',fn) (autoload ',fn ,file)))))
+ (unless (fboundp fn) (autoload fn file))
+ nil))
(defalias 'facep 'ignore)
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/dgnushack.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project