]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
2005-01-13 Michael Snyder <msnyder@redhat.com>
authorMichael Snyder <msnyder@vmware.com>
Fri, 14 Jan 2005 04:01:37 +0000 (04:01 +0000)
committerMichael Snyder <msnyder@vmware.com>
Fri, 14 Jan 2005 04:01:37 +0000 (04:01 +0000)
* utils.c: Whitespace tweaks.

gdb/ChangeLog
gdb/utils.c

index 488ace0f5ed5fe218f3234d5d37631231760c82a..a48292853dfce26292faf0188758f31cd8dc03ab 100644 (file)
@@ -1,5 +1,6 @@
 2005-01-13  Michael Snyder  <msnyder@redhat.com>
 
+       * utils.c: Whitespace tweaks.
        * tracepoint.[ch]: Whitespace tweaks.
        * solist.h: Whitespace tweaks.
 
index b917aafd69d9a7b46d07614969c41e8b35fc7c8b..1d84967f6f5e3629da1937a0898b35f0faced6e1 100644 (file)
@@ -459,7 +459,7 @@ add_continuation (void (*continuation_hook) (struct continuation_arg *),
    before we have a chance of exhausting those that were already
    there. We need to then save the beginning of the list in a pointer
    and do the continuations from there on, instead of using the
-   global beginning of list as our iteration pointer.*/
+   global beginning of list as our iteration pointer.  */
 void
 do_all_continuations (void)
 {
@@ -473,7 +473,7 @@ do_all_continuations (void)
   continuation_ptr = cmd_continuation;
   cmd_continuation = NULL;
 
-  /* Work now on the list we have set aside. */
+  /* Work now on the list we have set aside.  */
   while (continuation_ptr)
     {
       (continuation_ptr->continuation_hook) (continuation_ptr->arg_list);
@@ -499,7 +499,8 @@ discard_all_continuations (void)
 }
 
 /* Add a continuation to the continuation list, the global list
-   intermediate_continuation. The new continuation will be added at the front.*/
+   intermediate_continuation.  The new continuation will be added at
+   the front.  */
 void
 add_intermediate_continuation (void (*continuation_hook)
                               (struct continuation_arg *),
@@ -536,7 +537,7 @@ do_all_intermediate_continuations (void)
   continuation_ptr = intermediate_continuation;
   intermediate_continuation = NULL;
 
-  /* Work now on the list we have set aside. */
+  /* Work now on the list we have set aside.  */
   while (continuation_ptr)
     {
       (continuation_ptr->continuation_hook) (continuation_ptr->arg_list);