init_breakpoint_sal: Add quotes around part of command in error message
authorJoel Brobecker <brobecker@gnat.com>
Tue, 15 May 2012 16:42:43 +0000 (16:42 +0000)
committerJoel Brobecker <brobecker@gnat.com>
Tue, 15 May 2012 16:42:43 +0000 (16:42 +0000)
gdb/ChangeLog:

        * breakpoint.c (init_breakpoint_sal): Add quotes around part
        of command in two error message.

gdb/ChangeLog
gdb/breakpoint.c

index c488a2fd77424f169651aabfdf4654d5fd2e2626..2af1f5911f2e021f7599e8989326712afdf025b2 100644 (file)
@@ -1,3 +1,8 @@
+2012-05-15  Joel Brobecker  <brobecker@adacore.com>
+
+       * breakpoint.c (init_breakpoint_sal): Add quotes around part
+       of command in two error message.
+
 2012-05-15  Joel Brobecker  <brobecker@adacore.com>
 
        * breakpoint.c (init_breakpoint_sal): Remove trailing spaces.
index 9eecdf88341903dcd92fe068dfef719930aaca64..1a76754be51456da9fca3c5a1baed64c68d04b89 100644 (file)
@@ -8629,7 +8629,7 @@ init_breakpoint_sal (struct breakpoint *b, struct gdbarch *gdbarch,
          char *arg = b->cond_string;
          loc->cond = parse_exp_1 (&arg, block_for_pc (loc->address), 0);
          if (*arg)
-              error (_("Garbage %s follows condition"), arg);
+              error (_("Garbage '%s' follows condition"), arg);
        }
 
       /* Dynamic printf requires and uses additional arguments on the
@@ -8642,7 +8642,7 @@ init_breakpoint_sal (struct breakpoint *b, struct gdbarch *gdbarch,
            error (_("Format string required"));
        }
       else if (b->extra_string)
-       error (_("Garbage %s at end of command"), b->extra_string);
+       error (_("Garbage '%s' at end of command"), b->extra_string);
     }
 
   b->display_canonical = display_canonical;