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]

[PATCH] fix typos in inferior.h


Using Dean Luick's patch as a clue, I've checked in the patch below
under the new "obvious fix" rule.

I hope I was fast enough to be the first one to use this new rule.

cgf
(Why do I feel like a SlashDotter right now?)

Index: inferior.h
===================================================================
RCS file: /cvs/uberbaum/gdb/inferior.h,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -p -w -r1.13 -r1.14
--- inferior.h	2001/01/24 16:28:20	1.13
+++ inferior.h	2001/02/06 04:03:23	1.14
@@ -348,8 +348,10 @@ enum step_over_calls_kind
   {
     STEP_OVER_NONE,
     STEP_OVER_ALL,
-    STEP_OVER_UNDEBUGGABLE,
-  } step_over_calls;
+    STEP_OVER_UNDEBUGGABLE
+  };
+
+extern enum step_over_calls_kind step_over_calls;
 
 /* If stepping, nonzero means step count is > 1
    so don't print frame next time inferior stops

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