Fix bug in dwarf-mode.el
authorTom Tromey <tromey@adacore.com>
Tue, 15 Mar 2022 18:55:51 +0000 (12:55 -0600)
committerTom Tromey <tromey@adacore.com>
Tue, 15 Mar 2022 18:59:00 +0000 (12:59 -0600)
I noticed that, occasionally, dwarf-mode would think that the objdump
subprocess was still running after it had clearly exited.  I managed
to reliably reproduce this today and learned that a process sentinel
is not guaranteed to be run with the current buffer set to the process
buffer.  This patch fixes the problem.

I've bumped the version number of dwarf-mode.el to make it easier to
install for users who already have an earlier one installed.

I'm checking this in.

2022-03-15  Tom Tromey  <tromey@adacore.com>

* dwarf-mode.el: Now 1.7.
(dwarf--sentinel): Switch to the process buffer.

binutils/ChangeLog
binutils/dwarf-mode.el

index 539849c8815523063585d589691c3202a2640d1d..f717e0ce127bbb62e7abbd719b3488d4a76e045d 100644 (file)
@@ -1,3 +1,8 @@
+2022-03-15  Tom Tromey  <tromey@adacore.com>
+
+       * dwarf-mode.el: Now 1.7.
+       (dwarf--sentinel): Switch to the process buffer.
+
 2022-03-11  Vladimir Mezentsev  <vladimir.mezentsev@oracle.com>
 
        * MAINTAINERS: Add gprofng maintainer.
index 11aeb1f79fdb872eab80f462a47cbfad3c65d11c..9df875ca4fe8526e680698339d55e208afea1ed6 100644 (file)
@@ -1,6 +1,6 @@
 ;;; dwarf-mode.el --- Browser for DWARF information. -*-lexical-binding:t-*-
 
-;; Version: 1.6
+;; Version: 1.7
 
 ;; Copyright (C) 2012-2022 Free Software Foundation, Inc.
 
           (set-marker (process-mark proc) (point))
          (set-buffer-modified-p nil))))))
 
-(defun dwarf--sentinel (_proc _status)
-  (setq mode-line-process nil)
-  (setq dwarf--process nil))
+(defun dwarf--sentinel (proc _status)
+  (when (buffer-live-p (process-buffer proc))
+    (with-current-buffer (process-buffer proc)
+      (setq mode-line-process nil)
+      (setq dwarf--process nil))))
 
 (defun dwarf--invoke (start end &rest command)
   "Invoke a command and arrange to insert output into the current buffer."