aboutsummaryrefslogtreecommitdiff
path: root/gdb/doc
diff options
context:
space:
mode:
authorAndrew Burgess <aburgess@redhat.com>2022-05-19 15:13:22 +0100
committerAndrew Burgess <aburgess@redhat.com>2022-05-19 15:22:04 +0100
commit62ec8e6dad018082e33e7dcb0633f28332f3520c (patch)
tree25ba4740da6df849d9fd3a87f226209a88171159 /gdb/doc
parent8ea87c7296fce00d0223f504f0a24ac701347f23 (diff)
downloadgdb-62ec8e6dad018082e33e7dcb0633f28332f3520c.zip
gdb-62ec8e6dad018082e33e7dcb0633f28332f3520c.tar.gz
gdb-62ec8e6dad018082e33e7dcb0633f28332f3520c.tar.bz2
gdb/doc: make use of group/end group in 'info pretty-printers' example
The 'info pretty-printers' example is pretty long and consists of many commands and their output. Currently, when the pdf manual is generated this example spans a page-break, with the page-break falling part way through some example output from GDB. This commit breaks up the example using @group .... @end group, within each group is a single GDB command and all its output. Now, when the pdf manual is created, the page-break is placed after the output of one GDB command, and before the subsequent command, this looks much nicer.
Diffstat (limited to 'gdb/doc')
-rw-r--r--gdb/doc/gdb.texinfo10
1 files changed, 10 insertions, 0 deletions
diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo
index 68f7aba..76fc548 100644
--- a/gdb/doc/gdb.texinfo
+++ b/gdb/doc/gdb.texinfo
@@ -12075,6 +12075,7 @@ another from library2.so named @code{bar} that prints two types of objects,
@code{bar1} and @code{bar2}.
@smallexample
+@group
(gdb) info pretty-printer
library1.so:
foo
@@ -12082,11 +12083,15 @@ library2.so:
bar
bar1
bar2
+@end group
+@group
(gdb) info pretty-printer library2
library2.so:
bar
bar1
bar2
+@end group
+@group
(gdb) disable pretty-printer library1
1 printer disabled
2 of 3 printers enabled
@@ -12097,6 +12102,8 @@ library2.so:
bar
bar1
bar2
+@end group
+@group
(gdb) disable pretty-printer library2 bar;bar1
1 printer disabled
1 of 3 printers enabled
@@ -12105,6 +12112,8 @@ library2.so:
bar
bar1 [disabled]
bar2
+@end group
+@group
(gdb) disable pretty-printer library2 bar
1 printer disabled
0 of 3 printers enabled
@@ -12115,6 +12124,7 @@ library2.so:
bar [disabled]
bar1 [disabled]
bar2
+@end group
@end smallexample
Note that for @code{bar} the entire printer can be disabled,