1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

lisp/proced.el (proced-send-signal): small fix

This commit is contained in:
Roland Winkler 2011-07-19 20:09:31 -05:00
parent ae97e6451d
commit 5db2afd2fb
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2011-07-19 Roland Winkler <winkler@gnu.org>
* proced.el (proced-send-signal): For *Marked Processes* buffer
put point at beginning of buffer.
2011-07-19 Stephen Berman <stephen.berman@gmx.net>
* proced.el (proced-format): Make header lines align with the text

View file

@ -1733,7 +1733,9 @@ After sending the signal, this command runs the normal hook
(buffer-disable-undo)
(setq buffer-read-only t)
(dolist (process process-alist)
(insert " " (cdr process) "\n")))
(insert " " (cdr process) "\n"))
(delete-char -1)
(goto-char (point-min)))
(save-window-excursion
;; Analogous to `dired-pop-to-buffer'
;; Don't split window horizontally. (Bug#1806)