diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-07-07 16:50:55 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-07-07 16:50:55 +0000 |
commit | 9f24ea14636469afe3b34ecb64327e5329fcbd58 (patch) | |
tree | 393f54b08e98d99fa219e2d41d3273ee14d36a00 /lisp/gud.el | |
parent | b0ffcc0de821733a18ed6712765527b57e797edc (diff) | |
download | emacs-9f24ea14636469afe3b34ecb64327e5329fcbd58.tar.gz |
(gud-mips-p): Check for OSF system on Alpha also.
Diffstat (limited to 'lisp/gud.el')
-rw-r--r-- | lisp/gud.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/gud.el b/lisp/gud.el index 6ccd0d15c1f..85d97507e35 100644 --- a/lisp/gud.el +++ b/lisp/gud.el @@ -459,7 +459,8 @@ and source-file directory for your debugger." ;; We haven't tested gud on this system: (string-match "^mips-[^-]*-riscos" system-configuration) ;; It's documented on OSF/1.3 - (string-match "^mips-[^-]*-osf1" system-configuration)) + (string-match "^mips-[^-]*-osf1" 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) |