emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r114312: message.el (message-expand-group, message-c


From: Katsumi Yamaoka
Subject: [Emacs-diffs] trunk r114312: message.el (message-expand-group, message-completion-in-region): Correct the order of start and end of a region
Date: Mon, 16 Sep 2013 23:22:10 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 114312
revision-id: address@hidden
parent: address@hidden
committer: Katsumi Yamaoka <address@hidden>
branch nick: trunk
timestamp: Mon 2013-09-16 23:22:02 +0000
message:
  message.el (message-expand-group, message-completion-in-region): Correct the 
order of start and end of a region
modified:
  lisp/gnus/ChangeLog            changelog-20091113204419-o5vbwnq5f7feedwu-1433
  lisp/gnus/message.el           message.el-20091113204419-o5vbwnq5f7feedwu-1145
=== modified file 'lisp/gnus/ChangeLog'
--- a/lisp/gnus/ChangeLog       2013-09-13 07:30:32 +0000
+++ b/lisp/gnus/ChangeLog       2013-09-16 23:22:02 +0000
@@ -1,3 +1,8 @@
+2013-09-16  Katsumi Yamaoka  <address@hidden>
+
+       * message.el (message-expand-group, message-completion-in-region):
+       Correct the order of start and end of a region.
+
 2013-09-13  Glenn Morris  <address@hidden>
 
        * mml2015.el (gnus-create-image): Autoload it.

=== modified file 'lisp/gnus/message.el'
--- a/lisp/gnus/message.el      2013-08-01 22:58:40 +0000
+++ b/lisp/gnus/message.el      2013-09-16 23:22:02 +0000
@@ -7982,12 +7982,12 @@
                 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)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]