]> git.eshelyaron.com Git - emacs.git/commitdiff
Keep the position in the process buffer when deleting processes
authorTino Calancha <f92capac@gmail.com>
Tue, 23 Feb 2016 05:24:52 +0000 (16:24 +1100)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 23 Feb 2016 05:24:52 +0000 (16:24 +1100)
* lisp/simple.el (process-menu-delete-process): Keep the
position in the buffer after killing a process (bug#21759).

Copyright-paperwork-exempt: yes

lisp/simple.el

index 4efad8ce9e340f18ece054a4ca8a5c3e913405b6..8c9d546bb726fac3137168d5b5ad28b3239105dc 100644 (file)
@@ -3746,8 +3746,13 @@ support pty association, if PROGRAM is nil."
 (defun process-menu-delete-process ()
   "Kill process at point in a `list-processes' buffer."
   (interactive)
-  (delete-process (tabulated-list-get-id))
-  (revert-buffer))
+  (let ((pos (point)))
+    (delete-process (tabulated-list-get-id))
+    (revert-buffer)
+    (goto-char (min pos (point-max)))
+    (if (eobp)
+        (forward-line -1)
+      (beginning-of-line))))
 
 (defun list-processes--refresh ()
   "Recompute the list of processes for the Process List buffer.