Mercurial > emacs
comparison lisp/progmodes/gud.el @ 77624:cb9aae08782f
(gud-menu-map): Pdb can't handle SIGINT so
don't put stop on toolbar.
author | Nick Roberts <nickrob@snap.net.nz> |
---|---|
date | Mon, 30 Apr 2007 22:05:51 +0000 |
parents | 15f6e5a53aff |
children | 28e125eb9a2a 8fb0b13a76a7 70bf32a0f523 |
comparison
equal
deleted
inserted
replaced
77623:6e8b07f808fc | 77624:cb9aae08782f |
---|---|
150 :visible (memq gud-minor-mode '(gdbmi gdb dbx jdb))) | 150 :visible (memq gud-minor-mode '(gdbmi gdb dbx jdb))) |
151 ([go] menu-item (if gdb-active-process "Continue" "Run") gud-go | 151 ([go] menu-item (if gdb-active-process "Continue" "Run") gud-go |
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 |
159 :enable (not gud-running) | 159 :enable (not gud-running) |
160 :visible (and (memq gud-minor-mode '(gdbmi gdba gdb perldb)) | 160 :visible (and (memq gud-minor-mode '(gdbmi gdba gdb perldb)) |