diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/files.el | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7e8f9655460..74bcabfb575 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2013-09-21 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * files.el (auto-mode-alist): Support OBJFILE-gdb.gdb script files | ||
| 4 | recognized by GDB 7.5 and later. | ||
| 5 | |||
| 1 | 2013-09-21 Xue Fuqiao <xfq.free@gmail.com> | 6 | 2013-09-21 Xue Fuqiao <xfq.free@gmail.com> |
| 2 | 7 | ||
| 3 | * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming. | 8 | * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming. |
diff --git a/lisp/files.el b/lisp/files.el index ca55c646699..1a268200289 100644 --- a/lisp/files.el +++ b/lisp/files.el | |||
| @@ -2269,6 +2269,10 @@ since only a single case-insensitive search through the alist is made." | |||
| 2269 | ;; .PROCESSORNAME-gdbinit so that the host and target gdbinit files | 2269 | ;; .PROCESSORNAME-gdbinit so that the host and target gdbinit files |
| 2270 | ;; don't interfere with each other. | 2270 | ;; don't interfere with each other. |
| 2271 | ("/\\.[a-z0-9-]*gdbinit" . gdb-script-mode) | 2271 | ("/\\.[a-z0-9-]*gdbinit" . gdb-script-mode) |
| 2272 | ;; GDB 7.5 introduced OBJFILE-gdb.gdb script files; e.g. a file | ||
| 2273 | ;; named 'emacs-gdb.gdb', if it exists, will be automatically | ||
| 2274 | ;; loaded when GDB reads an objfile called 'emacs'. | ||
| 2275 | ("-gdb\\.gdb" . gdb-script-mode) | ||
| 2272 | ("[cC]hange\\.?[lL]og?\\'" . change-log-mode) | 2276 | ("[cC]hange\\.?[lL]og?\\'" . change-log-mode) |
| 2273 | ("[cC]hange[lL]og[-.][0-9]+\\'" . change-log-mode) | 2277 | ("[cC]hange[lL]og[-.][0-9]+\\'" . change-log-mode) |
| 2274 | ("\\$CHANGE_LOG\\$\\.TXT" . change-log-mode) | 2278 | ("\\$CHANGE_LOG\\$\\.TXT" . change-log-mode) |