]> git.eshelyaron.com Git - emacs.git/commitdiff
(gud-gdb-get-stackframe): Allow absolute
authorNick Roberts <nickrob@snap.net.nz>
Sat, 5 Jul 2008 09:36:39 +0000 (09:36 +0000)
committerNick Roberts <nickrob@snap.net.nz>
Sat, 5 Jul 2008 09:36:39 +0000 (09:36 +0000)
filenames in stack trace (text command mode).

lisp/progmodes/gud.el

index fadeae2e26cf7d45fa9f6d08f9bd1345ca0d144f..7c1970f7aa20a78e36e26f546dfc3108e3f3e8c3 100644 (file)
@@ -889,7 +889,7 @@ It is passed through FILTER before we look at it."
                    (string-match "^#\\([0-9]+\\) +[0-9a-fx]+ in \\([:0-9a-zA-Z_]+\\) (" e)
                    (string-match "^#\\([0-9]+\\) +\\([:0-9a-zA-Z_]+\\) (" e)))
              (if (not (string-match
-                       "at \\([-0-9a-zA-Z_.]+\\):\\([0-9]+\\)$" e))
+                       "at \\([-0-9a-zA-Z_/.]+\\):\\([0-9]+\\)$" e))
                  nil
                (setcar newlst
                        (list (nth 0 (car newlst))
@@ -901,7 +901,7 @@ It is passed through FILTER before we look at it."
            (setq newlst
                  (cons
                   (if (string-match
-                       "at \\([-0-9a-zA-Z_.]+\\):\\([0-9]+\\)$" e)
+                       "at \\([-0-9a-zA-Z_/.]+\\):\\([0-9]+\\)$" e)
                       (list name num (match-string 1 e)
                             (match-string 2 e))
                     (list name num))