diff options
author | Yuchen Pei <id@ypei.org> | 2025-08-03 17:00:24 +1000 |
---|---|---|
committer | Yuchen Pei <id@ypei.org> | 2025-08-03 17:00:24 +1000 |
commit | 85a9c00631270b6c6689265c98450575b17ae3a7 (patch) | |
tree | eedd5fc84f3491650332172d5c8d2c710fe42c50 /emacs/.emacs.d | |
parent | c78999d627ecd89da9beaf7dc52aa65a0d35c70e (diff) |
[emacs] fixup
Diffstat (limited to 'emacs/.emacs.d')
-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 "
") |