gdb/
authorJan Kratochvil <jan.kratochvil@redhat.com>
Fri, 10 Apr 2009 16:00:49 +0000 (16:00 +0000)
committerJan Kratochvil <jan.kratochvil@redhat.com>
Fri, 10 Apr 2009 16:00:49 +0000 (16:00 +0000)
* varobj.c (varobj_invalidate): Fix formatting text width.

gdb/ChangeLog
gdb/varobj.c

index d97f92168262b7b464adb026172687afbb35307e..b6f86a7646638facd7907516ddc570a6c32a9a23 100644 (file)
@@ -2,6 +2,7 @@
 
        * gdbtypes.c: Remove excessive parentheses at the return keywords.
        * varobj.c (varobj_invalidate): Fix indentation.
+       * varobj.c (varobj_invalidate): Fix formatting text width.
 
 2009-04-08  Vladimir Prus  <vladimir@codesourcery.com>
 
index ecd6f85c8c070ef080972bfc49dc87614b3f0d22..a7957f698b46da512949286377ee14e9407d9bea 100644 (file)
@@ -2764,7 +2764,8 @@ varobj_invalidate (void)
       while (*varp != NULL)
        {
          /* Floating varobjs are reparsed on each stop, so we don't care if
-            the presently parsed expression refers to something that's gone.  */
+            the presently parsed expression refers to something that's gone.
+            */
          if ((*varp)->root->floating)
            continue;
 
@@ -2773,9 +2774,10 @@ varobj_invalidate (void)
            {
              struct varobj *tmp_var;
 
-             /* Try to create a varobj with same expression.  If we succeed replace
-                the old varobj, otherwise invalidate it.  */
-             tmp_var = varobj_create (NULL, (*varp)->name, (CORE_ADDR) 0, USE_CURRENT_FRAME);
+             /* Try to create a varobj with same expression.  If we succeed
+                replace the old varobj, otherwise invalidate it.  */
+             tmp_var = varobj_create (NULL, (*varp)->name, (CORE_ADDR) 0,
+                                      USE_CURRENT_FRAME);
              if (tmp_var != NULL) 
                { 
                  tmp_var->obj_name = xstrdup ((*varp)->obj_name);
This page took 0.028555 seconds and 4 git commands to generate.