From 18fe299aa15136bb2706d901e2d4c8393240143b Mon Sep 17 00:00:00 2001 From: Katsumi Yamaoka Date: Mon, 16 Sep 2013 23:21:49 +0000 Subject: [PATCH] message.el (message-expand-group, message-completion-in-region): Correct the order of start and end of a region --- lisp/ChangeLog | 5 +++++ lisp/message.el | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 76f251b42..70c133ad0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2013-09-16 Katsumi Yamaoka + + * message.el (message-expand-group, message-completion-in-region): + Correct the order of start and end of a region. + 2013-09-13 Glenn Morris * mml2015.el (gnus-create-image): Autoload it. diff --git a/lisp/message.el b/lisp/message.el index 4eb2a579c..4878dc337 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) -- 2.25.1