# HG changeset patch # User Richard M. Stallman # Date 744871007 0 # Node ID 820df40f1e8c61e17e32a146adb781036accb32d # Parent c9b46e3fe74961d89b95762938d385ac0db793f0 (gud-dbx-marker-filter): Detect signals as well as bpts. diff -r c9b46e3fe749 -r 820df40f1e8c lisp/gud.el --- a/lisp/gud.el Mon Aug 09 00:57:19 1993 +0000 +++ b/lisp/gud.el Mon Aug 09 04:36:47 1993 +0000 @@ -337,8 +337,12 @@ (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))