aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorEli Zaretskii2018-11-30 10:45:28 +0200
committerEli Zaretskii2018-11-30 10:45:28 +0200
commitbce1d1afabe24c8461d56336fb966e819f20a175 (patch)
treea3fca082da3c64e9178294f78d3b7eb6d587e882 /lisp
parent809989f79ee4038f50d18765c4b727c8451ae0da (diff)
downloademacs-bce1d1afabe24c8461d56336fb966e819f20a175.tar.gz
emacs-bce1d1afabe24c8461d56336fb966e819f20a175.zip
Improve documentation of gdb-mi.el
* lisp/progmodes/gdb-mi.el (gdb-show-changed-values) (gdb-max-children): Doc fixes. * doc/emacs/building.texi (Source Buffers, Stack Buffer) (GDB User Interface Layout): Mention some additional customizable variables. (Bug#33548)
Diffstat (limited to 'lisp')
-rw-r--r--lisp/progmodes/gdb-mi.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/progmodes/gdb-mi.el b/lisp/progmodes/gdb-mi.el
index 0506386a75d..013a40943ba 100644
--- a/lisp/progmodes/gdb-mi.el
+++ b/lisp/progmodes/gdb-mi.el
@@ -1120,13 +1120,15 @@ line, and no execution takes place."
1120(defcustom gdb-show-changed-values t 1120(defcustom gdb-show-changed-values t
1121 "If non-nil change the face of out of scope variables and changed values. 1121 "If non-nil change the face of out of scope variables and changed values.
1122Out of scope variables are suppressed with `shadow' face. 1122Out of scope variables are suppressed with `shadow' face.
1123Changed values are highlighted with the face `font-lock-warning-face'." 1123Changed values are highlighted with the face `font-lock-warning-face'.
1124Used by Speedbar."
1124 :type 'boolean 1125 :type 'boolean
1125 :group 'gdb 1126 :group 'gdb
1126 :version "22.1") 1127 :version "22.1")
1127 1128
1128(defcustom gdb-max-children 40 1129(defcustom gdb-max-children 40
1129 "Maximum number of children before expansion requires confirmation." 1130 "Maximum number of children before expansion requires confirmation.
1131Used by Speedbar."
1130 :type 'integer 1132 :type 'integer
1131 :group 'gdb 1133 :group 'gdb
1132 :version "22.1") 1134 :version "22.1")