reindent print_macro_definition
authorTom Tromey <tromey@redhat.com>
Wed, 14 May 2014 19:31:10 +0000 (13:31 -0600)
committerTom Tromey <tromey@redhat.com>
Wed, 14 May 2014 19:31:10 +0000 (13:31 -0600)
I happened to notice that print_macro_definition is indented
improperly.  All the lines were a few extra spaces to the right.

This patch fixes the indentation.
Tested by rebuilding, committed.

2014-05-14  Tom Tromey  <tromey@redhat.com>

* macrocmd.c (print_macro_definition): Reindent.

gdb/ChangeLog
gdb/macrocmd.c

index c7a7667e8038546b3e424a3088a979aaf9c4ad09..d9e774a8ff029a7987c8144d94f1782c6fc788cb 100644 (file)
@@ -1,3 +1,7 @@
+2014-05-14  Tom Tromey  <tromey@redhat.com>
+
+       * macrocmd.c (print_macro_definition): Reindent.
+
 2014-05-13  Doug Evans  <xdje42@gmail.com>
 
        * python/py-cmd.c (cmdpy_completer): Add comment.
index 52ad6fa7ab7248027892ac3273e4d111862ea2b0..0455fb0f54e1731da0cf9b05fd26377e0c157c56 100644 (file)
@@ -159,32 +159,32 @@ print_macro_definition (const char *name,
                        struct macro_source_file *file,
                        int line)
 {
-      fprintf_filtered (gdb_stdout, "Defined at ");
-      show_pp_source_pos (gdb_stdout, file, line);
+  fprintf_filtered (gdb_stdout, "Defined at ");
+  show_pp_source_pos (gdb_stdout, file, line);
 
-      if (line != 0)
-       fprintf_filtered (gdb_stdout, "#define %s", name);
-      else
-       fprintf_filtered (gdb_stdout, "-D%s", name);
+  if (line != 0)
+    fprintf_filtered (gdb_stdout, "#define %s", name);
+  else
+    fprintf_filtered (gdb_stdout, "-D%s", name);
 
-      if (d->kind == macro_function_like)
-        {
-          int i;
-
-          fputs_filtered ("(", gdb_stdout);
-          for (i = 0; i < d->argc; i++)
-            {
-              fputs_filtered (d->argv[i], gdb_stdout);
-              if (i + 1 < d->argc)
-                fputs_filtered (", ", gdb_stdout);
-            }
-          fputs_filtered (")", gdb_stdout);
-        }
-
-      if (line != 0)
-       fprintf_filtered (gdb_stdout, " %s\n", d->replacement);
-      else
-       fprintf_filtered (gdb_stdout, "=%s\n", d->replacement);
+  if (d->kind == macro_function_like)
+    {
+      int i;
+
+      fputs_filtered ("(", gdb_stdout);
+      for (i = 0; i < d->argc; i++)
+       {
+         fputs_filtered (d->argv[i], gdb_stdout);
+         if (i + 1 < d->argc)
+           fputs_filtered (", ", gdb_stdout);
+       }
+      fputs_filtered (")", gdb_stdout);
+    }
+
+  if (line != 0)
+    fprintf_filtered (gdb_stdout, " %s\n", d->replacement);
+  else
+    fprintf_filtered (gdb_stdout, "=%s\n", d->replacement);
 }
 
 /* A callback function for usage with macro_for_each and friends.
This page took 0.054098 seconds and 4 git commands to generate.