]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix last change in gdb-mi.el
authorEli Zaretskii <eliz@gnu.org>
Sat, 16 Sep 2023 10:41:07 +0000 (13:41 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 16 Sep 2023 10:41:07 +0000 (13:41 +0300)
* lisp/progmodes/gdb-mi.el (gdb-display-io-buffer): Move to before
the first use.  Doc fix.  Change the group to 'gdb-buffers'.

* etc/NEWS: Announce the new option.  (Bug#65007)

etc/NEWS
lisp/progmodes/gdb-mi.el

index c618f3dafa659e29b06fa2a334d88ca42ca764c2..5522217bb4d46adab15a94d645e141c7ce4df23d 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -243,8 +243,9 @@ functions in CJK locales.
 \f
 * Changes in Specialized Modes and Packages in Emacs 30.1
 
+** gdb-mi
 ---
-** Variable order and truncation can now be configured in 'gdb-many-windows'.
+*** Variable order and truncation can now be configured in 'gdb-many-windows'.
 The new user option 'gdb-locals-table-row-config' allows users to
 configure the order and max length of various properties in the local
 variables buffer when using 'gdb-many-windows'.
@@ -259,6 +260,13 @@ If you want to get back the old behavior, set the user option to the value
     (setopt gdb-locals-table-row-config
             `((type . 0) (name . 0) (value . ,gdb-locals-value-limit)))
 
+---
+*** New user option 'gdb-display-io-buffer'.
+If this is nil, "M-x gdb" will neither create nor display a separate
+buffer for the I/O of the program being debugged, but will instead
+redirect the program's interaction to the GDB execution buffer.  The
+default is t, to preserve previous behavior.
+
 ** Grep
 
 *** New user option 'grep-use-headings'.
index 8ce5df6e0c74199bb1f79c1b9c3867698baf32a2..bc0070d26301bcc886f1d9b9894a70cf886b8edc 100644 (file)
@@ -716,6 +716,13 @@ that GDB starts to reuse existing source windows."
   :group 'gdb
   :version "28.1")
 
+(defcustom gdb-display-io-buffer t
+  "When non-nil, display the separate `gdb-inferior-io' buffer.
+Otherwise, send program output to the GDB buffer."
+  :type 'boolean
+  :group 'gdb-buffers
+  :version "30.1")
+
 (defvar gdbmi-debug-mode nil
   "When non-nil, print the messages sent/received from GDB/MI in *Messages*.")
 
@@ -1829,13 +1836,6 @@ this trigger is subscribed to `gdb-buf-publisher' and called with
   :group 'gdb
   :version "25.1")
 
-(defcustom gdb-display-io-buffer t
-  "When non-nil, display the `gdb-inferior-io' buffer.  Otherwise,
-send program output to the GDB buffer."
-  :type 'boolean
-  :group 'gdb
-  :version "30.1")
-
 (defun gdb-inferior-filter (proc string)
   (unless (string-equal string "")
     (let (buf)