]> git.eshelyaron.com Git - emacs.git/commitdiff
(gud-mips-p): Fix regexp so it will match alphaev56-* too.
authorKarl Heuer <kwzh@gnu.org>
Sun, 7 Dec 1997 21:40:41 +0000 (21:40 +0000)
committerKarl Heuer <kwzh@gnu.org>
Sun, 7 Dec 1997 21:40:41 +0000 (21:40 +0000)
lisp/gud.el

index cce7f123a69bd562dcca3c7e1628510f5463b5a2..a0d8611205a6efbd33b578373148a3aba46d6341 100644 (file)
@@ -577,7 +577,7 @@ containing the executable being debugged."
       (string-match "^mips-[^-]*-riscos" system-configuration)
       ;; It's documented on OSF/1.3
       (string-match "^mips-[^-]*-osf1" system-configuration)
-      (string-match "^alpha-[^-]*-osf" system-configuration))
+      (string-match "^alpha[^-]*-[^-]*-osf" system-configuration))
   "Non-nil to assume the MIPS/OSF dbx conventions (argument `-emacs').")
 
 (defun gud-mipsdbx-massage-args (file args)