diff options
| author | Luc Teirlinck | 2006-03-06 01:28:54 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2006-03-06 01:28:54 +0000 |
| commit | 40813c0814c613b2b77467cc155ae3eb1551054a (patch) | |
| tree | 06e4db3e7a91ad0e3a2277074edd2013bfedd116 | |
| parent | d594e8962a3f897eacda1b14452bf41682bf38d0 (diff) | |
| download | emacs-40813c0814c613b2b77467cc155ae3eb1551054a.tar.gz emacs-40813c0814c613b2b77467cc155ae3eb1551054a.zip | |
(gud-jdb-marker-filter): Double quote `[' in regexp for Lisp syntax.
| -rw-r--r-- | lisp/progmodes/gud.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/gud.el b/lisp/progmodes/gud.el index 31c8fe0e8a2..667b0462a36 100644 --- a/lisp/progmodes/gud.el +++ b/lisp/progmodes/gud.el | |||
| @@ -399,7 +399,7 @@ t means that there is no stack, and we are in display-file mode.") | |||
| 399 | gud-speedbar-key-map | 399 | gud-speedbar-key-map |
| 400 | gud-expansion-speedbar-buttons)) | 400 | gud-expansion-speedbar-buttons)) |
| 401 | 401 | ||
| 402 | (add-to-list | 402 | (add-to-list |
| 403 | 'speedbar-mode-functions-list | 403 | 'speedbar-mode-functions-list |
| 404 | '("GUD" (speedbar-item-info . gud-speedbar-item-info) | 404 | '("GUD" (speedbar-item-info . gud-speedbar-item-info) |
| 405 | (speedbar-line-directory . ignore)))) | 405 | (speedbar-line-directory . ignore)))) |
| @@ -684,7 +684,7 @@ To run GDB in text command mode, set `gud-gdb-command-name' to | |||
| 684 | (buffer-name gud-comint-buffer) | 684 | (buffer-name gud-comint-buffer) |
| 685 | (with-current-buffer gud-comint-buffer (eq gud-minor-mode 'gdba))) | 685 | (with-current-buffer gud-comint-buffer (eq gud-minor-mode 'gdba))) |
| 686 | (error "Multiple debugging is only supported with \"gdb --fullname\"")) | 686 | (error "Multiple debugging is only supported with \"gdb --fullname\"")) |
| 687 | 687 | ||
| 688 | (gud-common-init command-line nil 'gud-gdb-marker-filter) | 688 | (gud-common-init command-line nil 'gud-gdb-marker-filter) |
| 689 | (set (make-local-variable 'gud-minor-mode) 'gdb) | 689 | (set (make-local-variable 'gud-minor-mode) 'gdb) |
| 690 | 690 | ||
| @@ -2152,7 +2152,7 @@ nil) | |||
| 2152 | ;; print line numbers using LOCALE, inserting a comma or a | 2152 | ;; print line numbers using LOCALE, inserting a comma or a |
| 2153 | ;; period at the thousands positions (how ingenious!). | 2153 | ;; period at the thousands positions (how ingenious!). |
| 2154 | 2154 | ||
| 2155 | "\\(\[[0-9]+\] \\)*\\([a-zA-Z0-9.$_]+\\)\\.[a-zA-Z0-9$_<>(),]+ \ | 2155 | "\\(\\[[0-9]+] \\)*\\([a-zA-Z0-9.$_]+\\)\\.[a-zA-Z0-9$_<>(),]+ \ |
| 2156 | \\(([a-zA-Z0-9.$_]+:\\|line=\\)\\([0-9.,]+\\)" | 2156 | \\(([a-zA-Z0-9.$_]+:\\|line=\\)\\([0-9.,]+\\)" |
| 2157 | gud-marker-acc) | 2157 | gud-marker-acc) |
| 2158 | 2158 | ||