comparison lisp/progmodes/gud.el @ 78948:c7f20962ec6a

(pdb): Specify file for gud-break.
author Nick Roberts <nickrob@snap.net.nz>
date Tue, 02 Oct 2007 11:22:22 +0000
parents 07537c759a20
children 4271aaaba691
comparison
equal deleted inserted replaced
78947:1ad61879dce5 78948:c7f20962ec6a
1628 (list (gud-query-cmdline 'pdb))) 1628 (list (gud-query-cmdline 'pdb)))
1629 1629
1630 (gud-common-init command-line nil 'gud-pdb-marker-filter) 1630 (gud-common-init command-line nil 'gud-pdb-marker-filter)
1631 (set (make-local-variable 'gud-minor-mode) 'pdb) 1631 (set (make-local-variable 'gud-minor-mode) 'pdb)
1632 1632
1633 (gud-def gud-break "break %l" "\C-b" "Set breakpoint at current line.") 1633 (gud-def gud-break "break %f:%l" "\C-b" "Set breakpoint at current line.")
1634 (gud-def gud-remove "clear %f:%l" "\C-d" "Remove breakpoint at current line") 1634 (gud-def gud-remove "clear %f:%l" "\C-d" "Remove breakpoint at current line")
1635 (gud-def gud-step "step" "\C-s" "Step one source line with display.") 1635 (gud-def gud-step "step" "\C-s" "Step one source line with display.")
1636 (gud-def gud-next "next" "\C-n" "Step one line (skip functions).") 1636 (gud-def gud-next "next" "\C-n" "Step one line (skip functions).")
1637 (gud-def gud-cont "continue" "\C-r" "Continue with display.") 1637 (gud-def gud-cont "continue" "\C-r" "Continue with display.")
1638 (gud-def gud-finish "return" "\C-f" "Finish executing current function.") 1638 (gud-def gud-finish "return" "\C-f" "Finish executing current function.")