diff options
author | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2010-09-02 01:42:32 +0000 |
---|---|---|
committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2010-09-02 01:42:32 +0000 |
commit | c9fc72fa5acddcdc670a2eb89a777f48fb031820 (patch) | |
tree | 32bcbc2b4fe4797bc8469b3aea4c11b3021ad7fd /lisp/gnus/ecomplete.el | |
parent | 36a806f35776e884b6228f72030993284789c785 (diff) | |
download | emacs-c9fc72fa5acddcdc670a2eb89a777f48fb031820.tar.gz emacs-c9fc72fa5acddcdc670a2eb89a777f48fb031820.tar.bz2 emacs-c9fc72fa5acddcdc670a2eb89a777f48fb031820.zip |
Delete all trailing white space.
Diffstat (limited to 'lisp/gnus/ecomplete.el')
-rw-r--r-- | lisp/gnus/ecomplete.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/ecomplete.el b/lisp/gnus/ecomplete.el index 45fbcf902a2..1e9769f757d 100644 --- a/lisp/gnus/ecomplete.el +++ b/lisp/gnus/ecomplete.el @@ -95,7 +95,7 @@ (let* ((elems (cdr (assq type ecomplete-database))) (match (regexp-quote match)) (candidates - (sort + (sort (loop for (key count time text) in elems when (string-match match text) collect (list count time text)) |