From: Richard M. Stallman Date: Tue, 27 Jul 1993 05:51:39 +0000 (+0000) Subject: (dbx): For gud-break, send a file command and a stop command. X-Git-Tag: emacs-19.34~11553 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9d021db37bedefd95a42e324299e99e525d73a2a;p=emacs.git (dbx): For gud-break, send a file command and a stop command. --- diff --git a/lisp/gud.el b/lisp/gud.el index 9d7ccdb8b00..eb6608b88c0 100644 --- a/lisp/gud.el +++ b/lisp/gud.el @@ -330,8 +330,10 @@ and source-file directory for your debugger." (gud-common-init command-line) - (gud-def gud-break "stop at \"%f\":%l" + (gud-def gud-break "file \"%f\"\nstop at %l" "\C-b" "Set breakpoint at current line.") +;; (gud-def gud-break "stop at \"%f\":%l" +;; "\C-b" "Set breakpoint at current line.") (gud-def gud-remove "clear %l" "\C-d" "Remove breakpoint at current line") (gud-def gud-step "step %p" "\C-s" "Step one line with display.") (gud-def gud-stepi "stepi %p" "\C-i" "Step one instruction with display.")