aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGlenn Morris2018-12-02 10:32:23 -0800
committerGlenn Morris2018-12-02 10:32:23 -0800
commit4d66f9fe5eebd98f2483c9416620c096d245f549 (patch)
tree179f789c34a5f4ac1e8263e95ae160aba6f00e4f /doc
parent2064cd4c9b60766f958a6dcffcaa810224ef2d7d (diff)
parentcc3ad9a3d1b278852336265e0505e82cc5453778 (diff)
downloademacs-4d66f9fe5eebd98f2483c9416620c096d245f549.tar.gz
emacs-4d66f9fe5eebd98f2483c9416620c096d245f549.zip
Merge from origin/emacs-26
cc3ad9a ; * CONTRIBUTE: Clarify rules for committing to release branc... a89dbe2 * doc/misc/dbus.texi (Type Conversion): Fix typo. (Bug#33551) 03ee726 ; Add comment to `customize-package-emacs-version-alist' bce1d1a Improve documentation of gdb-mi.el
Diffstat (limited to 'doc')
-rw-r--r--doc/emacs/building.texi15
-rw-r--r--doc/misc/dbus.texi2
2 files changed, 16 insertions, 1 deletions
diff --git a/doc/emacs/building.texi b/doc/emacs/building.texi
index 496c4275bc2..64fbbe8f9e8 100644
--- a/doc/emacs/building.texi
+++ b/doc/emacs/building.texi
@@ -934,6 +934,7 @@ height and width values during the debugging session.
934@cindex GDB User Interface layout 934@cindex GDB User Interface layout
935 935
936@vindex gdb-many-windows 936@vindex gdb-many-windows
937@vindex gdb-show-main
937 If the variable @code{gdb-many-windows} is @code{nil} (the default), 938 If the variable @code{gdb-many-windows} is @code{nil} (the default),
938@kbd{M-x gdb} normally displays only the GUD interaction buffer. 939@kbd{M-x gdb} normally displays only the GUD interaction buffer.
939However, if the variable @code{gdb-show-main} is also non-@code{nil}, 940However, if the variable @code{gdb-show-main} is also non-@code{nil},
@@ -1033,6 +1034,15 @@ allows you to go backwards, which can be useful for running through
1033code that has already executed, in order to examine its execution in 1034code that has already executed, in order to examine its execution in
1034more detail. 1035more detail.
1035 1036
1037@vindex gdb-mi-decode-strings
1038 If the file names of the source files are shown with octal escapes,
1039set the variable @code{gdb-mi-decode-strings} to the appropriate
1040coding-system, most probably @code{utf-8}. (This is @code{nil} by
1041default because GDB may emit octal escapes in situations where
1042decoding is undesirable, and also because the program being debugged
1043might use an encoding different from the one used to encode non-ASCII
1044file names on your system.)
1045
1036@node Breakpoints Buffer 1046@node Breakpoints Buffer
1037@subsubsection Breakpoints Buffer 1047@subsubsection Breakpoints Buffer
1038 1048
@@ -1172,6 +1182,11 @@ also updates the Locals buffer
1172(described in the next section). 1182(described in the next section).
1173@end iftex 1183@end iftex
1174 1184
1185@vindex gdb-stack-buffer-addresses
1186 If you want the frame address to be shown each stack frame,
1187customize the variable @code{gdb-stack-buffer-addresses} to a
1188non-@code{nil} value.
1189
1175@node Other GDB Buffers 1190@node Other GDB Buffers
1176@subsubsection Other GDB Buffers 1191@subsubsection Other GDB Buffers
1177 1192
diff --git a/doc/misc/dbus.texi b/doc/misc/dbus.texi
index 5b14382d8b8..f55a11d7afb 100644
--- a/doc/misc/dbus.texi
+++ b/doc/misc/dbus.texi
@@ -1015,7 +1015,7 @@ but different to
1015 1015
1016The value for a byte D-Bus type can be any integer in the range 0 1016The value for a byte D-Bus type can be any integer in the range 0
1017through 255. If a character is used as argument, modifiers 1017through 255. If a character is used as argument, modifiers
1018represented outside this range are stripped of. For example, 1018represented outside this range are stripped off. For example,
1019@code{:byte ?x} is equal to @code{:byte ?\M-x}, but it is not equal to 1019@code{:byte ?x} is equal to @code{:byte ?\M-x}, but it is not equal to
1020@code{:byte ?\C-x} or @code{:byte ?\M-\C-x}. 1020@code{:byte ?\C-x} or @code{:byte ?\M-\C-x}.
1021 1021