diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2011-04-19 15:44:55 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2011-04-19 15:44:55 +0200 |
commit | 06b605171f1c9d8b42bd3326a243b8b03d2e4e58 (patch) | |
tree | e96c135042999136bf0e75d113aae306e51983e3 /lisp/proced.el | |
parent | 04c569546ad52f6270d8fc6d4aa0750950a0ac05 (diff) | |
download | emacs-06b605171f1c9d8b42bd3326a243b8b03d2e4e58.tar.gz emacs-06b605171f1c9d8b42bd3326a243b8b03d2e4e58.tar.bz2 emacs-06b605171f1c9d8b42bd3326a243b8b03d2e4e58.zip |
lisp/*.el: Lexical-binding cleanup.
Diffstat (limited to 'lisp/proced.el')
-rw-r--r-- | lisp/proced.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/proced.el b/lisp/proced.el index ce3ad08598c..ddc4ed1db14 100644 --- a/lisp/proced.el +++ b/lisp/proced.el @@ -1676,7 +1676,7 @@ After updating a displayed Proced buffer run the normal hook (message (if revert "Updating process information...done." "Updating process display...done."))))) -(defun proced-revert (&rest args) +(defun proced-revert (&rest _args) "Reevaluate the process listing based on the currently running processes. Preserves point and marks." (proced-update t)) @@ -1770,7 +1770,7 @@ After sending the signal, this command runs the normal hook (number-to-string signal) signal)))) (dolist (process process-alist) (with-temp-buffer - (condition-case err + (condition-case nil (if (zerop (call-process proced-signal-function nil t nil signal (number-to-string (car process)))) |