[gnus git] branch master updated: n0-17-317-gf077de5 =2= * ecomplete.el (ecomplete-display-matches): Revert patch since it doesn't work under XEmacs. ; * gnus.texi (Archived Messages): Note the default (bug#9552).
Lars Magne Ingebrigtsen <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via f077de57e36ecb72690582bd68e845a7f1e4efcf (commit)
via 46989f8a0570cbdb67bd882c24b59376a1543a9d (commit)
from 9d28cf467b76f94fbb847f2f871a5a38e0898c08 (commit)
- Log -----------------------------------------------------------------
commit f077de57e36ecb72690582bd68e845a7f1e4efcf
Author: Lars Magne Ingebrigtsen <[email protected]>
Date: Wed Sep 21 19:38:20 2011 +0200
* ecomplete.el (ecomplete-display-matches): Revert patch since it doesn't work under XEmacs.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index bc4b691..b07501e 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
2011-09-21 Lars Magne Ingebrigtsen <[email protected]>
+ * ecomplete.el (ecomplete-display-matches): Revert patch since it
+ doesn't work under XEmacs.
+
* nnimap.el (nnimap-map-port): New function to connect to 993 instead
of "imaps" to word around Windows problems.
(nnimap-open-connection-1): Use it.
diff --git a/lisp/ecomplete.el b/lisp/ecomplete.el
index 737c0db..6a47b11 100644
--- a/lisp/ecomplete.el
+++ b/lisp/ecomplete.el
@@ -123,15 +123,14 @@
(message "%s" matches)
nil)
(setq highlight (ecomplete-highlight-match-line matches line))
- (while (not (member (setq command (read-key-sequence-vector highlight))
- '([? ] [return] [?\r] [?\n] [?\C-g])))
+ (while (not (memq (setq command (read-event highlight)) '(? return)))
(cond
- ((member command '([27 ?n] [?\M-n]))
+ ((eq command ?\M-n)
(setq line (min (1+ line) max-lines)))
- ((member command '([27 ?p] [?\M-p]))
+ ((eq command ?\M-p)
(setq line (max (1- line) 0))))
(setq highlight (ecomplete-highlight-match-line matches line)))
- (when (member command '([return] [?\r] [?\n]))
+ (when (eq command 'return)
(nth line (split-string matches "\n")))))))
(defun ecomplete-highlight-match-line (matches line)
commit 46989f8a0570cbdb67bd882c24b59376a1543a9d
Author: Lars Magne Ingebrigtsen <[email protected]>
Date: Wed Sep 21 18:32:25 2011 +0200
* gnus.texi (Archived Messages): Note the default (bug#9552).
diff --git a/texi/ChangeLog b/texi/ChangeLog
index 6dda967..b025594 100644
--- a/texi/ChangeLog
+++ b/texi/ChangeLog
@@ -1,3 +1,7 @@
+2011-09-21 Lars Magne Ingebrigtsen <[email protected]>
+
+ * gnus.texi (Archived Messages): Note the default (bug#9552).
+
2011-09-11 Lars Magne Ingebrigtsen <[email protected]>
* gnus.texi (Listing Groups): Explain `gnus-group-list-limit'.
diff --git a/texi/gnus.texi b/texi/gnus.texi
index 0239fa6..380b5ef 100644
--- a/texi/gnus.texi
+++ b/texi/gnus.texi
@@ -12617,7 +12617,7 @@ Messages will be saved in all those groups.
When a key ``matches'', the result is used.
@item @code{nil}
-No message archiving will take place. This is the default.
+No message archiving will take place.
@end table
Let's illustrate:
-----------------------------------------------------------------------
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 | 3 +++
lisp/ecomplete.el | 9 ++++-----
texi/ChangeLog | 4 ++++
texi/gnus.texi | 2 +-
4 files changed, 12 insertions(+), 6 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