From b0fa5db6f63cfcf26983ed506f2fe6798582b8d4 Mon Sep 17 00:00:00 2001 From: Dan Nicolaescu Date: Tue, 3 Jul 2007 21:30:56 +0000 Subject: [PATCH] (auto-mode-alist): Match more valid gdb init file names. --- lisp/ChangeLog | 5 +++++ lisp/progmodes/gud.el | 6 +++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 129b9aab8e7..dee447a1720 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2007-07-03 Dan Nicolaescu + + * progmodes/gud.el (auto-mode-alist): Match more valid gdb init + file names. + 2007-07-02 Martin Rudalics * help-mode.el (help-make-xrefs): Skip spaces too when skipping tabs. diff --git a/lisp/progmodes/gud.el b/lisp/progmodes/gud.el index e557fdef843..536d8c4cfc1 100644 --- a/lisp/progmodes/gud.el +++ b/lisp/progmodes/gud.el @@ -3193,8 +3193,12 @@ Treats actions as defuns." (goto-char (point-max))) t) +;; Besides .gdbinit, gdb documents other names to be usable for init +;; files, cross-debuggers can use something like +;; .PROCESSORNAME-gdbinit so that the host and target gdbinit files +;; don't interfere with each other. ;;;###autoload -(add-to-list 'auto-mode-alist '("/\\.gdbinit" . gdb-script-mode)) +(add-to-list 'auto-mode-alist '("/\\.[a-z0-9-]*gdbinit" . gdb-script-mode)) ;;;###autoload (define-derived-mode gdb-script-mode nil "GDB-Script" -- 2.39.5