# HG changeset patch # User Richard M. Stallman # Date 778047299 0 # Node ID 8217ec2868288c976cfacc5f17b631e44dcaeb02 # Parent ebda9d1e7d481a9798df4819789e40e9d6572aae (dbx): Use newline, not semicolon, between file and stop cmds. diff -r ebda9d1e7d48 -r 8217ec286828 lisp/gud.el --- a/lisp/gud.el Sat Aug 27 23:03:05 1994 +0000 +++ b/lisp/gud.el Sun Aug 28 04:14:59 1994 +0000 @@ -635,14 +635,6 @@ ;; Make dbx give out the source location info that we need. (process-send-string (get-buffer-process gud-comint-buffer) "printf \"\032\032%1d:\",$curline;file\n")) - ((or (string-match "-sunos" system-configuration) - (string-match "-solaris" system-configuration)) - ;; The following works for both the UCB and SunPro 2.0.1 versions - ;; of dbx. The `stop' is lost using the `\n' separator as in the - ;; default case. Is there a dbx where the newline is actually - ;; necessary? (d.love@dl.ac.uk) - (gud-def gud-break "file \"%d%f\";stop at %l" - "\C-b" "Set breakpoint at current line.")) (t (gud-def gud-break "file \"%d%f\"\nstop at %l" "\C-b" "Set breakpoint at current line.")))