diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-03-10 00:14:28 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-03-10 00:14:28 -0400 |
commit | d0cff250c9a73c45375a17b27dc933ae190c2825 (patch) | |
tree | 02bfbf2682d3243eeb5cade67fffc4038207d8ee | |
parent | 982447160e7f0b84bde9b0f97e21b98028f3415f (diff) | |
download | emacs.d-d0cff250c9a73c45375a17b27dc933ae190c2825.tar.gz |
gnus-group-sort-by-topic: Load gnus-topic
-rw-r--r-- | lisp/init-gnus.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/init-gnus.el b/lisp/init-gnus.el index 13f4d5f..8782534 100644 --- a/lisp/init-gnus.el +++ b/lisp/init-gnus.el @@ -71,10 +71,10 @@ "Sort alphabetically by group topic. This allows groups to be ordered by topics even when topic mode is off." + (require 'gnus-topic) (string< (gnus-group-topic (gnus-info-group info1)) (gnus-group-topic (gnus-info-group info2)))) -(autoload 'gnus-group-topic "gnus-topic") (defun km/gnus-group-jump-to-group () "`gnus-group-jump-to-group', but with ido completion." (interactive) |