diff options
author | Kyle Meyer <meyerkya@gmail.com> | 2013-06-21 11:38:20 -0400 |
---|---|---|
committer | Kyle Meyer <meyerkya@gmail.com> | 2013-06-30 20:39:58 -0400 |
commit | 2b5cd3178aa9e550d39705aaadbd6ca89fff2125 (patch) | |
tree | 700f1d8849d7a30df1feb02ec3a1c592bd09ab95 | |
parent | 4ad849035b9865f26761ac886f1241a2df3dff73 (diff) | |
download | emacs.d-2b5cd3178aa9e550d39705aaadbd6ca89fff2125.tar.gz |
gnus follow-link function is for gwene
rename function to make this clear
-rw-r--r-- | init/km-gnus.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/init/km-gnus.el b/init/km-gnus.el index 8b55b78..98138b3 100644 --- a/init/km-gnus.el +++ b/init/km-gnus.el @@ -82,8 +82,8 @@ '(gnus-thread-sort-by-number gnus-thread-sort-by-most-recent-date)) -(defun km/follow-gnus-link () - "Follow link at bottom of gnus message" +(defun km/follow-gwene-link () + "Follow link at bottom of gwene message" (interactive) ;; next 3 lines from gnus-sum.el guns-summary-widget-forward (gnus-summary-select-article) @@ -95,9 +95,9 @@ (widget-button-press (point))) (define-key gnus-summary-mode-map - (kbd "C-c j") 'km/follow-gnus-link) + (kbd "C-c j") 'km/follow-gwene-link) (define-key gnus-article-mode-map - (kbd "C-c j") 'km/follow-gnus-link) + (kbd "C-c j") 'km/follow-gwene-link) (require 'notmuch) (require 'org-gnus) |