emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r112584: * progmodes/gdb-mi.el (gdb-r


From: Jean-Philippe Gravel
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r112584: * progmodes/gdb-mi.el (gdb-running, gdb-starting): Remove
Date: Tue, 14 May 2013 14:34:13 -0400
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 112584
committer: Jean-Philippe Gravel <address@hidden>
branch nick: trunk
timestamp: Tue 2013-05-14 14:34:13 -0400
message:
  * progmodes/gdb-mi.el (gdb-running, gdb-starting): Remove
  signals for which replies are never received.
modified:
  lisp/ChangeLog
  lisp/progmodes/gdb-mi.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-05-14 18:13:31 +0000
+++ b/lisp/ChangeLog    2013-05-14 18:34:13 +0000
@@ -1,5 +1,10 @@
 2013-05-14  Jean-Philippe Gravel  <address@hidden>
 
+       * progmodes/gdb-mi.el (gdb-running, gdb-starting): Remove
+       signals for which replies are never received.
+
+2013-05-14  Jean-Philippe Gravel  <address@hidden>
+
        * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
        (gdb-handler-alist, gdb-handler-number): Remove variables.
        (gdb-handler-list): New variable.

=== modified file 'lisp/progmodes/gdb-mi.el'
--- a/lisp/progmodes/gdb-mi.el  2013-05-14 18:13:31 +0000
+++ b/lisp/progmodes/gdb-mi.el  2013-05-14 18:34:13 +0000
@@ -2376,8 +2376,7 @@
    (propertize gdb-inferior-status 'face font-lock-type-face))
   (when (not gdb-non-stop)
     (setq gud-running t))
-  (setq gdb-active-process t)
-  (gdb-emit-signal gdb-buf-publisher 'update-threads))
+  (setq gdb-active-process t))
 
 (defun gdb-starting (_output-field _result)
   ;; CLI commands don't emit ^running at the moment so use gdb-running too.
@@ -2385,11 +2384,7 @@
   (gdb-force-mode-line-update
    (propertize gdb-inferior-status 'face font-lock-type-face))
   (setq gdb-active-process t)
-  (setq gud-running t)
-  ;; GDB doesn't seem to respond to -thread-info before first stop or
-  ;; thread exit (even in non-stop mode), so this is useless.
-  ;; Behavior may change in the future.
-  (gdb-emit-signal gdb-buf-publisher 'update-threads))
+  (setq gud-running t))
 
 ;; -break-insert -t didn't give a reason before gdb 6.9
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]