This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] doc/gdbint.texinfo: Fix problems with ``{'' and ``}''


I've just committed (as obvious) the patch below.

It fixes errors when running "make info" -- I had been doing "make pdf",
thinking that would catch all of the problems.

	* gdbint.texinfo (Address Classes): Fix problems with insertion
	of ``{'' and ``}'' in example.

Index: doc/gdbint.texinfo
===================================================================
RCS file: /cvs/src/src/gdb/doc/gdbint.texinfo,v
retrieving revision 1.105
diff -u -p -r1.105 gdbint.texinfo
--- doc/gdbint.texinfo	17 Oct 2002 18:33:36 -0000	1.105
+++ doc/gdbint.texinfo	18 Oct 2002 18:48:51 -0000
@@ -2675,34 +2675,34 @@ to implement the address class macros:
 @smallexample
 somearch_address_class_type_flags (int byte_size,
                                    int dwarf2_addr_class)
-{
+@{
   if (byte_size == 2)
     return TYPE_FLAG_ADDRESS_CLASS_1;
   else
     return 0;
-}
+@}
 
 static char *
 somearch_address_class_type_flags_to_name (int type_flags)
-{
+@{
   if (type_flags & TYPE_FLAG_ADDRESS_CLASS_1)
     return "short";
   else
     return NULL;
-}
+@}
 
 int
 somearch_address_class_name_to_type_flags (char *name,
                                            int *type_flags_ptr)
-{
+@{
   if (strcmp (name, "short") == 0)
-    {
+    @{
       *type_flags_ptr = TYPE_FLAG_ADDRESS_CLASS_1;
       return 1;
-    }
+    @}
   else
     return 0;
-}
+@}
 @end smallexample
 
 The qualifier @code{@@short} is used in @value{GDBN}'s type expressions


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]