[gnus git] branch master updated: n0-17-147-g8a2a4e6 =2= * pop3.el (pop3-open-server): Use :end-of-capability. ; (gnus-read-ephemeral-emacs-bug-group): Make sure that the id is always a number.
Lars Magne Ingebrigtsen <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 8a2a4e6e9c61c5594a5ba0367a93280ae1f5d5ce (commit)
via 09369577198aa878501bca1ba1d6f8e39dc6c9f2 (commit)
from fd3aad343dd944e00680d43b8e821c98f7d49780 (commit)
- Log -----------------------------------------------------------------
commit 8a2a4e6e9c61c5594a5ba0367a93280ae1f5d5ce
Author: Wolfgang Jenkner <[email protected]>
Date: Sun Jul 3 15:50:50 2011 +0200
* pop3.el (pop3-open-server): Use :end-of-capability.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e40be2c..7255d9b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2011-07-03 Wolfgang Jenkner <[email protected]> (tiny change)
+
+ * pop3.el (pop3-open-server): Use :end-of-capability.
+
2011-07-03 Lars Magne Ingebrigtsen <[email protected]>
* gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Make sure that
diff --git a/lisp/pop3.el b/lisp/pop3.el
index 90e11b3..b485ac3 100644
--- a/lisp/pop3.el
+++ b/lisp/pop3.el
@@ -306,7 +306,8 @@ Returns the process associated with the connection."
(t
(or pop3-stream-type 'network)))
:capability-command "CAPA\r\n"
- :end-of-command "^\\.\r?\n\\|^\\(-ERR\\|+OK \\).*\n"
+ :end-of-command "^\\(-ERR\\|+OK \\).*\n"
+ :end-of-capability "^\\.\r?\n"
:success "^\\+OK.*\n"
:return-list t
:starttls-function
commit 09369577198aa878501bca1ba1d6f8e39dc6c9f2
Author: Lars Magne Ingebrigtsen <[email protected]>
Date: Sun Jul 3 14:27:16 2011 +0200
(gnus-read-ephemeral-emacs-bug-group): Make sure that the id is always a number.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3b3d221..e40be2c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
2011-07-03 Lars Magne Ingebrigtsen <[email protected]>
+ * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Make sure that
+ the id is always a number.
+
* dgnushack.el (debbugs-summary-mode): Shut up compiler about debbugs.
* gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Hook into
diff --git a/lisp/gnus-group.el b/lisp/gnus-group.el
index 70be1ce..4ef8412 100644
--- a/lisp/gnus-group.el
+++ b/lisp/gnus-group.el
@@ -2466,8 +2466,9 @@ the bug number, and browsing the URL must return mbox output."
(defun gnus-read-ephemeral-emacs-bug-group (number &optional window-conf)
"Browse Emacs bug NUMBER as ephemeral group."
- (interactive (list (read-string "Enter bug number: "
- (thing-at-point 'word) nil)))
+ (interactive (list (string-to-number
+ (read-string "Enter bug number: "
+ (thing-at-point 'word) nil))))
(gnus-read-ephemeral-bug-group
number
(cdr (assoc 'emacs gnus-bug-group-download-format-alist))
@@ -2475,8 +2476,7 @@ the bug number, and browsing the URL must return mbox output."
(when (boundp 'debbugs-summary-mode)
(with-current-buffer (window-buffer (selected-window))
(debbugs-summary-mode 1)
- (set (make-local-variable 'debbugs-bug-number)
- (string-to-number number)))))
+ (set (make-local-variable 'debbugs-bug-number) number))))
(defun gnus-group-jump-to-group (group &optional prompt)
"Jump to newsgroup GROUP.
-----------------------------------------------------------------------
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/gnus-group.el | 8 ++++----
lisp/pop3.el | 3 ++-
3 files changed, 13 insertions(+), 5 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