diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-02-20 23:53:25 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-02-28 00:29:48 -0500 |
commit | b4a890c2e219de2c4b247de2d6d6783b0a1bf73b (patch) | |
tree | 1ca70687b63926b9bd586b8944b6aa554e907eb0 /lisp | |
parent | 7c777701043b64d60d96b674500af5554bef86cc (diff) | |
download | emacs.d-b4a890c2e219de2c4b247de2d6d6783b0a1bf73b.tar.gz |
sync-mail: Remove global variable
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/init-gnus.el | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lisp/init-gnus.el b/lisp/init-gnus.el index d40280e..a5011ff 100644 --- a/lisp/init-gnus.el +++ b/lisp/init-gnus.el @@ -39,10 +39,7 @@ (display-buffer bufname) (if (process-live-p process) (message "Mail sync process is already running") - (start-process process bufname km/sync-mail-cmd)))) - -(defvar km/sync-mail-cmd "sync-mail" - "Run sync mail script.") + (start-process process bufname "sync-mail")))) ;; http://www.emacswiki.org/emacs/GnusSync (defun gnus-grace-exit-before-kill-emacs () |