* gdbint.texinfo (Address Classes): Fix problems with insertion
authorKevin Buettner <kevinb@redhat.com>
Fri, 18 Oct 2002 18:50:43 +0000 (18:50 +0000)
committerKevin Buettner <kevinb@redhat.com>
Fri, 18 Oct 2002 18:50:43 +0000 (18:50 +0000)
of ``{'' and ``}'' in example.

gdb/doc/ChangeLog
gdb/doc/gdbint.texinfo

index 2b0ec6e03bc3195cd0a6544dded9802517a026e4..1923c8bf8733728ed2317b23991912399193a182 100644 (file)
@@ -1,3 +1,8 @@
+2002-10-18  Kevin Buettner  <kevinb@redhat.com>
+
+       * gdbint.texinfo (Address Classes): Fix problems with insertion
+       of ``{'' and ``}'' in example.
+
 2002-10-17  Kevin Buettner  <kevinb@redhat.com>
 
        * gdbint.texinfo (Address Classes): New section.
index eef2b86f3026ee5f50610901b313307d5fd1dc7d..cdb06b2ff36c031a5aec0192f583cda48f91c4c0 100644 (file)
@@ -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
This page took 0.029496 seconds and 4 git commands to generate.