aboutsummaryrefslogtreecommitdiff
path: root/gdb/doc
diff options
context:
space:
mode:
authorRoland Pesch <pesch@cygnus>1991-07-24 01:40:47 +0000
committerRoland Pesch <pesch@cygnus>1991-07-24 01:40:47 +0000
commit5dac81188a6bff271cfe6c0fd7c6808e106cc479 (patch)
treead99a0cef6d6f5734aec08f62383f4ae3b0ed12f /gdb/doc
parentff2e4391f7ab509aea251d564c55f21532959ba0 (diff)
downloadgdb-5dac81188a6bff271cfe6c0fd7c6808e106cc479.zip
gdb-5dac81188a6bff271cfe6c0fd7c6808e106cc479.tar.gz
gdb-5dac81188a6bff271cfe6c0fd7c6808e106cc479.tar.bz2
Fix braces in example (@{ @} not {}), spotted by makeinfo.
Allow fragment's $Id: to be texinfo comment.
Diffstat (limited to 'gdb/doc')
-rwxr-xr-xgdb/doc/gdb.symb-m48
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/doc/gdb.symb-m4 b/gdb/doc/gdb.symb-m4
index 46799ea..e257d31 100755
--- a/gdb/doc/gdb.symb-m4
+++ b/gdb/doc/gdb.symb-m4
@@ -1,7 +1,7 @@
_dnl__ -*- Texinfo -*-
_dnl__ Copyright (c) 1988 1989 1990 1991 Free Software Foundation, Inc.
_dnl__ This file is part of the source for the GDB manual.
-_dnl__ $Id$
+@c M4 FRAGMENT: $Id$
@node Symbols, Altering, Data, Top
@chapter Examining the Symbol Table
@@ -48,7 +48,7 @@ differs from @code{whatis} by printing a detailed description, instead of just
the name of the type. For example, if your program declares a variable
as
@example
-struct complex {double real; double imag;} v;
+struct complex @{double real; double imag;@} v;
@end example
@noindent
compare the output of the two commands:
@@ -56,10 +56,10 @@ compare the output of the two commands:
(_GDBP__) whatis v
type = struct complex
(_GDBP__) ptype v
-type = struct complex {
+type = struct complex @{
double real;
double imag;
-}
+@}
@end example
@item info types @var{regexp}