diff options
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/.emacs.d/init/ycp-gnus.el | 2 | ||||
-rw-r--r-- | emacs/.emacs.d/lisp/my/my-gnus.el | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/emacs/.emacs.d/init/ycp-gnus.el b/emacs/.emacs.d/init/ycp-gnus.el index 50901dd..f95b03b 100644 --- a/emacs/.emacs.d/init/ycp-gnus.el +++ b/emacs/.emacs.d/init/ycp-gnus.el @@ -94,7 +94,7 @@ (my-keybind global-map "C-c n i" #'my-gnus-open-inbox "C-c n n" #'my-gnus-start - "C-c n u" #'gnus-group-get-new-news) + "C-c n u" #'my-gnus-group-refresh) (my-server-timer my-gnus-new-news-timer nil 300 'my-gnus-group-get-new-news-quietly) ;; https://superuser.com/questions/519685/gnus-get-rid-of-mail-and-news-folders diff --git a/emacs/.emacs.d/lisp/my/my-gnus.el b/emacs/.emacs.d/lisp/my/my-gnus.el index ff0ec64..d61efc8 100644 --- a/emacs/.emacs.d/lisp/my/my-gnus.el +++ b/emacs/.emacs.d/lisp/my/my-gnus.el @@ -428,7 +428,7 @@ The archiving target comes from `my-gnus-group-alist'." (lambda (proc event) (let ((status (process-exit-status proc))) (when (eq status 0) - (message "isync in progress... done: %s" + (message "isync in progress...done: %s" (with-current-buffer (process-buffer proc) (goto-char (point-max)) (re-search-backward "
") |