[gnus git] branch master updated: m0-7-225-g18fe299 =1= message.el (message-expand-group, message-completion-in-region): Correct the order of start and end of a region
Katsumi Yamaoka <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 18fe299aa15136bb2706d901e2d4c8393240143b (commit)
from 961096501354df132b457e032113c145ab2c4de0 (commit)
- Log -----------------------------------------------------------------
commit 18fe299aa15136bb2706d901e2d4c8393240143b
Author: Katsumi Yamaoka <[email protected]>
Date: Mon Sep 16 23:21:49 2013 +0000
message.el (message-expand-group, message-completion-in-region): Correct the order of start and end of a region
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 76f251b..70c133a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2013-09-16 Katsumi Yamaoka <[email protected]>
+
+ * message.el (message-expand-group, message-completion-in-region):
+ Correct the order of start and end of a region.
+
2013-09-13 Glenn Morris <[email protected]>
* mml2015.el (gnus-create-image): Autoload it.
diff --git a/lisp/message.el b/lisp/message.el
index 4eb2a57..4878dc3 100644
--- a/lisp/message.el
+++ b/lisp/message.el
@@ -8026,12 +8026,12 @@ those headers."
group)
collection))
gnus-active-hashtb))
- (message-completion-in-region e b collection)))
+ (message-completion-in-region b e collection)))
(defalias 'message-completion-in-region
(if (fboundp 'completion-in-region)
'completion-in-region
- (lambda (e b hashtb)
+ (lambda (b e hashtb)
(let* ((string (buffer-substring b e))
(completions (all-completions string hashtb))
comp)
-----------------------------------------------------------------------
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/message.el | 4 ++--
2 files changed, 7 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