[gnus git] branch master updated: m0-9-17-g582d45b =2= XEmacs build warning fix ; * dgnushack.el: Silence XEmacs dns.el warning.
Lars Ingebrigtsen <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 582d45b652cb9ef1271d405c460132cce8a734de (commit)
via 3ab4faecaf6eefd16142e072f29edf2af25c5e21 (commit)
from 37159f7bfe7bc12dc4ca3966e2a7525be82a60c9 (commit)
- Log -----------------------------------------------------------------
commit 582d45b652cb9ef1271d405c460132cce8a734de
Author: Lars Ingebrigtsen <[email protected]>
Date: Sat Feb 1 12:33:41 2014 -0800
XEmacs build warning fix
* gravatar.el (gravatar-retrieve-synchronously): XEmacs also has
`url-retrieve-synchronously', apparently.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 2a7b8d3..c563dd0 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
2014-02-01 Lars Ingebrigtsen <[email protected]>
+ * gravatar.el (gravatar-retrieve-synchronously): XEmacs also has
+ `url-retrieve-synchronously', apparently.
+
* dgnushack.el: Silence XEmacs dns.el warning.
* gnus-compat.el (gnus-compat): Declare `declare-function' only here
diff --git a/lisp/gravatar.el b/lisp/gravatar.el
index 650564e..ffbc37a 100644
--- a/lisp/gravatar.el
+++ b/lisp/gravatar.el
@@ -138,9 +138,7 @@ You can provide a list of argument to pass to CB in CBARGS."
"Retrieve MAIL-ADDRESS gravatar and returns it."
(let ((url (gravatar-build-url mail-address)))
(if (gravatar-cache-expired url)
- (with-current-buffer (if (featurep 'xemacs)
- (url-retrieve url)
- (url-retrieve-synchronously url))
+ (with-current-buffer (url-retrieve-synchronously url)
(when gravatar-automatic-caching
(url-store-in-cache (current-buffer)))
(let ((data (gravatar-data->image)))
commit 3ab4faecaf6eefd16142e072f29edf2af25c5e21
Author: Lars Ingebrigtsen <[email protected]>
Date: Sat Feb 1 12:30:25 2014 -0800
* dgnushack.el: Silence XEmacs dns.el warning.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index be1c235..2a7b8d3 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
2014-02-01 Lars Ingebrigtsen <[email protected]>
+ * dgnushack.el: Silence XEmacs dns.el warning.
+
* gnus-compat.el (gnus-compat): Declare `declare-function' only here
instead of in all files.
diff --git a/lisp/dgnushack.el b/lisp/dgnushack.el
index 8ff2857..b346487 100644
--- a/lisp/dgnushack.el
+++ b/lisp/dgnushack.el
@@ -257,7 +257,7 @@ in `defcustom' forms."
(when (and (featurep 'xemacs)
(dgnushack-emacs-compile-defcustom-p))
- (maybe-fbind '(defined-colors face-attribute))
+ (maybe-fbind '(defined-colors face-attribute network-interface-list))
(maybe-bind '(idna-program installation-directory)))
(when (featurep 'xemacs)
-----------------------------------------------------------------------
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/ChangeLog | 5 +++++
lisp/dgnushack.el | 2 +-
lisp/gravatar.el | 4 +---
3 files changed, 7 insertions(+), 4 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