From: Richard M. Stallman Date: Mon, 9 Aug 1993 04:36:47 +0000 (+0000) Subject: (gud-dbx-marker-filter): Detect signals as well as bpts. X-Git-Tag: emacs-19.34~11354 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=107a16d19996f6e5ff837f71b5544f46ccc3c206;p=emacs.git (gud-dbx-marker-filter): Detect signals as well as bpts. --- diff --git a/lisp/gud.el b/lisp/gud.el index 4fa2a7f31cf..2138e0d4b42 100644 --- a/lisp/gud.el +++ b/lisp/gud.el @@ -337,8 +337,12 @@ and source-file directory for your debugger." (cons file args)) (defun gud-dbx-marker-filter (string) - (if (string-match - "stopped in .* at line \\([0-9]*\\) in file \"\\([^\"]*\\)\"" string) + (if (or (string-match + "stopped in .* at line \\([0-9]*\\) in file \"\\([^\"]*\\)\"" + string) + (string-match + "signal .* in .* at line \\([0-9]*\\) in file \"\\([^\"]*\\)\"" + string)) (setq gud-last-frame (cons (substring string (match-beginning 2) (match-end 2))