]> git.eshelyaron.com Git - emacs.git/commitdiff
(gud-dbx-marker-filter): Detect signals as well as bpts.
authorRichard M. Stallman <rms@gnu.org>
Mon, 9 Aug 1993 04:36:47 +0000 (04:36 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 9 Aug 1993 04:36:47 +0000 (04:36 +0000)
lisp/gud.el

index 4fa2a7f31cffddfb1feb7f8080e88fc1c2c7941a..2138e0d4b421a820fd4fb4a016de761f9e5b70b4 100644 (file)
@@ -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))