Added a scope-level around the contents of an #ifdef in
authorDrew Moseley <dmoseley@cygnus>
Thu, 13 Aug 1998 20:15:20 +0000 (20:15 +0000)
committerDrew Moseley <dmoseley@cygnus>
Thu, 13 Aug 1998 20:15:20 +0000 (20:15 +0000)
gdbtk_cleanup() so that the variable declarations in there
would not be illegal in a C compilation.

gdb/ChangeLog-gdbtk
gdb/gdbtk.c

index 42b7b0df7fac6af754b6b0edaca46b1a682f582c..2b7e46a8f1514d704b1389b47ecf27bcf95fc555 100644 (file)
@@ -1,3 +1,9 @@
+Thu Aug 13 15:09:59 1998  Drew Moseley  <dmoseley@cygnus.com>
+
+       * gdbtk.c (gdbtk_cleanup): added a scope-level around the contents
+       of the #ifdef so that the variable declarations in there would not
+       be illegal in a C compilation.
+
 Mon Jul 27 13:07:16 1998  Martin M. Hunt  <hunt@cygnus.com>
 
        * gdbtk.c (gdbtk_call_command): Removed because it is now
index 01cf3ddd60efff2a74a8431294b3138df33e659e..e8d31ad56588ddfba577c92b52f74d34eba94068 100644 (file)
@@ -298,8 +298,10 @@ gdbtk_cleanup (dummy)
 {
   Tcl_Eval (gdbtk_interp, "gdbtk_cleanup");
 #ifdef IDE
-  struct ide_event_handle *h = (struct ide_event_handle *) dummy;
-  ide_interface_deregister_all (h);
+  {
+    struct ide_event_handle *h = (struct ide_event_handle *) dummy;
+    ide_interface_deregister_all (h);
+  }
 #endif
   Tcl_Finalize ();
 }