]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp/proced.el (proced-send-signal): small fix
authorRoland Winkler <winkler@gnu.org>
Wed, 20 Jul 2011 01:09:31 +0000 (20:09 -0500)
committerRoland Winkler <winkler@gnu.org>
Wed, 20 Jul 2011 01:09:31 +0000 (20:09 -0500)
lisp/ChangeLog
lisp/proced.el

index 069dbb2922fce9263da1b8ee54743b0097ba3b41..bd27ae8da226fc7e0cd783d1bb223fb3d09819f8 100644 (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
index cc1856060b307359224f502d51b2ae9ae5560f52..b1a7aed722cd402e2fd497645dff149b67f900eb 100644 (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)