Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
b0fa5db6
Commit
b0fa5db6
authored
Jul 03, 2007
by
Dan Nicolaescu
Browse files
(auto-mode-alist): Match more valid gdb init
file names.
parent
f204ca2f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/progmodes/gud.el
lisp/progmodes/gud.el
+5
-1
No files found.
lisp/ChangeLog
View file @
b0fa5db6
2007-07-03 Dan Nicolaescu <dann@ics.uci.edu>
* progmodes/gud.el (auto-mode-alist): Match more valid gdb init
file names.
2007-07-02 Martin Rudalics <rudalics@gmx.at>
* help-mode.el (help-make-xrefs): Skip spaces too when skipping tabs.
lisp/progmodes/gud.el
View file @
b0fa5db6
...
...
@@ -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
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment