aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1997-12-07 21:40:41 +0000
committerKarl Heuer1997-12-07 21:40:41 +0000
commit7c82656b0871d47a482840073fe8724b722e68ea (patch)
tree57063fa2aa535e980b7360b33c04ac83f72755d3
parent20f92f7bc84e95a359d87220ce1f804036e514fa (diff)
downloademacs-7c82656b0871d47a482840073fe8724b722e68ea.tar.gz
emacs-7c82656b0871d47a482840073fe8724b722e68ea.zip
(gud-mips-p): Fix regexp so it will match alphaev56-* too.
-rw-r--r--lisp/gud.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gud.el b/lisp/gud.el
index cce7f123a69..a0d8611205a 100644
--- a/lisp/gud.el
+++ b/lisp/gud.el
@@ -577,7 +577,7 @@ containing the executable being debugged."
577 (string-match "^mips-[^-]*-riscos" system-configuration) 577 (string-match "^mips-[^-]*-riscos" system-configuration)
578 ;; It's documented on OSF/1.3 578 ;; It's documented on OSF/1.3
579 (string-match "^mips-[^-]*-osf1" system-configuration) 579 (string-match "^mips-[^-]*-osf1" system-configuration)
580 (string-match "^alpha-[^-]*-osf" system-configuration)) 580 (string-match "^alpha[^-]*-[^-]*-osf" system-configuration))
581 "Non-nil to assume the MIPS/OSF dbx conventions (argument `-emacs').") 581 "Non-nil to assume the MIPS/OSF dbx conventions (argument `-emacs').")
582 582
583(defun gud-mipsdbx-massage-args (file args) 583(defun gud-mipsdbx-massage-args (file args)