* top.c: Add new commands "set annotate" and "show annotate".
authorMichael Snyder <msnyder@vmware.com>
Mon, 21 Oct 1996 21:11:31 +0000 (21:11 +0000)
committerMichael Snyder <msnyder@vmware.com>
Mon, 21 Oct 1996 21:11:31 +0000 (21:11 +0000)
PR 8511

gdb/ChangeLog
gdb/top.c

index f0ce5581bd7ad7f31ddf8f372065e0fe0e89d363..2c8c52f27fba4e789cc5c424c64377c56de53ff1 100644 (file)
@@ -1,3 +1,7 @@
+Mon Oct 21 14:01:38 1996  Michael Snyder  <msnyder@cleaver.cygnus.com>
+
+       * top.c: Add new commands "set annotate" and "show annotate".
+       
 Sun Oct 20 04:38:39 1996  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
 
        * corelow.c (core_close):  Clear inferior_pid only if there is
index ed196bc273681675cada75971763c5eb08011573..2e1098c7f68dc073f86e3b32cd084ddbf8c97365 100644 (file)
--- a/gdb/top.c
+++ b/gdb/top.c
@@ -3636,4 +3636,11 @@ is displayed.", &setlist),
 This value is used to set the time limit for gdb to wait for a response\n\
 from he target.", &setlist),
                     &showlist);
+
+  c = add_set_cmd ("annotate", class_obscure, var_zinteger, 
+                  (char *)&annotation_level, "Set annotation_level.\n\
+0 == normal;     1 == fullname (for use when running under emacs)\n\
+2 == output annotated suitably for use by programs that control GDB.",
+                &setlist);
+  c = add_show_from_set (c, &showlist);
 }