aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Roberts2007-04-30 22:05:51 +0000
committerNick Roberts2007-04-30 22:05:51 +0000
commite795222265b942e2cc84a673d6cd50a2891ebe2b (patch)
treead01e5751beb5048d98fd9ee9052deb6a7b36ae4
parent4f1cc23d2e17f0e89fdec1f743b231f42a3d1ff2 (diff)
downloademacs-e795222265b942e2cc84a673d6cd50a2891ebe2b.tar.gz
emacs-e795222265b942e2cc84a673d6cd50a2891ebe2b.zip
(gud-menu-map): Pdb can't handle SIGINT so
don't put stop on toolbar.
-rw-r--r--lisp/progmodes/gud.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/gud.el b/lisp/progmodes/gud.el
index 3d252190eff..e557fdef843 100644
--- a/lisp/progmodes/gud.el
+++ b/lisp/progmodes/gud.el
@@ -152,7 +152,7 @@ Used to grey out relevant toolbar icons.")
152 :visible (and (not gud-running) 152 :visible (and (not gud-running)
153 (eq gud-minor-mode 'gdba))) 153 (eq gud-minor-mode 'gdba)))
154 ([stop] menu-item "Stop" gud-stop-subjob 154 ([stop] menu-item "Stop" gud-stop-subjob
155 :visible (or (not (eq gud-minor-mode 'gdba)) 155 :visible (or (not (memq gud-minor-mode '(gdba pdb)))
156 (and gud-running 156 (and gud-running
157 (eq gud-minor-mode 'gdba)))) 157 (eq gud-minor-mode 'gdba))))
158 ([until] menu-item "Continue to selection" gud-until 158 ([until] menu-item "Continue to selection" gud-until