diff options
author | Yuchen Pei <id@ypei.org> | 2025-08-03 10:30:46 +1000 |
---|---|---|
committer | Yuchen Pei <id@ypei.org> | 2025-08-03 10:30:46 +1000 |
commit | 870a3222c45dfb65f4a9692c73be973f77aeb9ed (patch) | |
tree | 7ef204a4863f71dd3a58ec628462cf6cd5ed48d2 /emacs/.emacs.d/lisp/my/my-wget.el | |
parent | e8eddcc6955f631ca0cfcd3b755c663a6b5d18ff (diff) |
[emacs] gnus with isync
Diffstat (limited to 'emacs/.emacs.d/lisp/my/my-wget.el')
-rw-r--r-- | emacs/.emacs.d/lisp/my/my-wget.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/emacs/.emacs.d/lisp/my/my-wget.el b/emacs/.emacs.d/lisp/my/my-wget.el index e7283aa..a55bb12 100644 --- a/emacs/.emacs.d/lisp/my/my-wget.el +++ b/emacs/.emacs.d/lisp/my/my-wget.el @@ -53,8 +53,7 @@ (my-start-process-with-torsocks no-tor "wget" "*wget*" "wget" url "-c" "-O" filename) (lambda (proc event) - (let ((ps (process-status proc)) - (status (process-exit-status proc))) + (let ((status (process-exit-status proc))) (if (eq status 0) (progn (message "[DONE] Fetched %s to %s" url filename) |