aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/progmodes/gud.el1
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 946b0858a07..743509e3ad8 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12006-03-26 Andreas Schwab <schwab@suse.de>
2
3 * progmodes/gud.el (gdb): Only complain about multiple debugging
4 when the gdb process is still running.
5
12006-03-25 Eli Zaretskii <eliz@gnu.org> 62006-03-25 Eli Zaretskii <eliz@gnu.org>
2 7
3 * mail/rmail.el (tool-bar-map): Defvar it. 8 * mail/rmail.el (tool-bar-map): Defvar it.
diff --git a/lisp/progmodes/gud.el b/lisp/progmodes/gud.el
index 7fa5a0b6dcc..907a2e7c300 100644
--- a/lisp/progmodes/gud.el
+++ b/lisp/progmodes/gud.el
@@ -683,6 +683,7 @@ To run GDB in text command mode, set `gud-gdb-command-name' to
683 683
684 (if (and gud-comint-buffer 684 (if (and gud-comint-buffer
685 (buffer-name gud-comint-buffer) 685 (buffer-name gud-comint-buffer)
686 (get-buffer-process gud-comint-buffer)
686 (with-current-buffer gud-comint-buffer (eq gud-minor-mode 'gdba))) 687 (with-current-buffer gud-comint-buffer (eq gud-minor-mode 'gdba)))
687 (error "Multiple debugging is only supported with \"gdb --fullname\"")) 688 (error "Multiple debugging is only supported with \"gdb --fullname\""))
688 689