[gnus git] branch master updated: n0-13-65-gece58ab =2= Autoload `password-in-cache-p'. ; Try to fix XEmacs message-options buffer-local issue.
Ted Zlatanov <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via ece58aba9e4c143043495d8e496b578aae3fcdc4 (commit)
via 22da67af31943736041742a4e5fe83c4b855b379 (commit)
from 225fbcd133621ecea56f0b9a1289392af49441df (commit)
- Log -----------------------------------------------------------------
commit ece58aba9e4c143043495d8e496b578aae3fcdc4
Author: Ted Zlatanov <[email protected]>
Date: Wed Mar 2 14:32:40 2011 -0600
Autoload `password-in-cache-p'.
* password-cache.el (password-in-cache-p): Add autoload.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e4538a7..e781286 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
2011-03-02 Teodor Zlatanov <[email protected]>
+ * password-cache.el (password-in-cache-p): Add autoload.
+
* message.el (message-options): Make buffer-local two ways to attempt
to fix a XEmacs bug.
diff --git a/lisp/password-cache.el b/lisp/password-cache.el
index a7f75a0..941428d 100644
--- a/lisp/password-cache.el
+++ b/lisp/password-cache.el
@@ -76,6 +76,7 @@ regulate cache behavior."
key
(symbol-value (intern-soft key password-data))))
+;;;###autoload
(defun password-in-cache-p (key)
"Check if KEY is in the cache."
(and password-cache
commit 22da67af31943736041742a4e5fe83c4b855b379
Author: Ted Zlatanov <[email protected]>
Date: Wed Mar 2 14:32:02 2011 -0600
Try to fix XEmacs message-options buffer-local issue.
* message.el (message-options): Make buffer-local two ways to attempt
to fix a XEmacs bug.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ace8c1c..e4538a7 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2011-03-02 Teodor Zlatanov <[email protected]>
+
+ * message.el (message-options): Make buffer-local two ways to attempt
+ to fix a XEmacs bug.
+
2011-03-02 Julien Danjou <[email protected]>
* gnus-art.el (gnus-with-article-buffer): Fix buffer live check.
diff --git a/lisp/message.el b/lisp/message.el
index c8a706e..9b50e27 100644
--- a/lisp/message.el
+++ b/lisp/message.el
@@ -1858,7 +1858,10 @@ You must have the \"hashcash\" binary installed, see `hashcash-path'."
(defvar message-options nil
"Some saved answers when sending message.")
-(make-variable-buffer-local 'message-options)
+
+(if (featurep 'xemacs)
+ (make-local-variable 'message-options)
+ (make-variable-buffer-local 'message-options))
(defvar message-send-mail-real-function nil
"Internal send mail function.")
-----------------------------------------------------------------------
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 | 7 +++++++
lisp/message.el | 5 ++++-
lisp/password-cache.el | 1 +
3 files changed, 12 insertions(+), 1 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