aboutsummaryrefslogtreecommitdiff
path: root/gdb/utils.c
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@vmware.com>2005-01-14 04:01:37 +0000
committerMichael Snyder <msnyder@vmware.com>2005-01-14 04:01:37 +0000
commit0a4a0819f37e9a5a7ceab5f7911d4c28a5c06f2f (patch)
tree3c20da31c871e503ccd6d7ed5c19b1e9662157ed /gdb/utils.c
parent3636de8b48ffa5ec2e1a95c0937cee96d96eb044 (diff)
downloadfsf-binutils-gdb-0a4a0819f37e9a5a7ceab5f7911d4c28a5c06f2f.zip
fsf-binutils-gdb-0a4a0819f37e9a5a7ceab5f7911d4c28a5c06f2f.tar.gz
fsf-binutils-gdb-0a4a0819f37e9a5a7ceab5f7911d4c28a5c06f2f.tar.bz2
2005-01-13 Michael Snyder <msnyder@redhat.com>
* utils.c: Whitespace tweaks.
Diffstat (limited to 'gdb/utils.c')
-rw-r--r--gdb/utils.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/gdb/utils.c b/gdb/utils.c
index b917aaf..1d84967 100644
--- a/gdb/utils.c
+++ b/gdb/utils.c
@@ -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);