This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] gdb/infrun.c: Various trivial ARI fixes.


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=fd7dcb94cbd44629b3929336aec8b76c3e339656

commit fd7dcb94cbd44629b3929336aec8b76c3e339656
Author: Joel Brobecker <brobecker@adacore.com>
Date:   Mon Aug 10 10:08:44 2015 -0700

    gdb/infrun.c: Various trivial ARI fixes.
    
    gdb/ChangeLog:
    
            * infrun.c (follow_fork, displaced_step_prepare, resume): Remove
            trailing new-line at end of warning message.
            (proceed): Add i18n marker to error messages.

Diff:
---
 gdb/ChangeLog |  6 ++++++
 gdb/infrun.c  | 10 +++++-----
 2 files changed, 11 insertions(+), 5 deletions(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 493ec61..0d71d23 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,9 @@
+2015-08-10  Joel Brobecker  <brobecker@adacore.com>
+
+	* infrun.c (follow_fork, displaced_step_prepare, resume): Remove
+	trailing new-line at end of warning message.
+	(proceed): Add i18n marker to error messages.
+
 2015-08-07  Pedro Alves  <palves@redhat.com>
 
 	* linux-nat.c (linux_nat_always_non_stop_p): Return 1.
diff --git a/gdb/infrun.c b/gdb/infrun.c
index 21aa8cf..a695f2e 100644
--- a/gdb/infrun.c
+++ b/gdb/infrun.c
@@ -803,7 +803,7 @@ follow_fork (void)
 		       issued is most likely not applicable to the
 		       child, so just warn, and refuse to resume.  */
 		    warning (_("Not resuming: switched threads "
-			       "before following fork child.\n"));
+			       "before following fork child."));
 		  }
 
 		/* Reset breakpoints in the child as appropriate.  */
@@ -1860,7 +1860,7 @@ displaced_step_prepare (ptid_t ptid)
 	 "auto".  */
       if (can_use_displaced_stepping == AUTO_BOOLEAN_TRUE)
 	{
-	  warning (_("disabling displaced stepping: %s\n"),
+	  warning (_("disabling displaced stepping: %s"),
 		   ex.message);
 	}
 
@@ -2356,7 +2356,7 @@ resume (enum gdb_signal sig)
 	 pending signals to deliver.  */
       if (sig != GDB_SIGNAL_0)
 	{
-	  warning (_("Couldn't deliver signal %s to %s.\n"),
+	  warning (_("Couldn't deliver signal %s to %s."),
 		   gdb_signal_to_name (sig), target_pid_to_str (tp->ptid));
 	}
 
@@ -3075,7 +3075,7 @@ proceed (CORE_ADDR addr, enum gdb_signal siggnal)
 	  switch_to_thread (tp->ptid);
 	  keep_going_pass_signal (ecs);
 	  if (!ecs->wait_some_more)
-	    error ("Command aborted.");
+	    error (_("Command aborted."));
 	}
     }
   else if (!tp->resumed && !thread_is_in_step_over_chain (tp))
@@ -3085,7 +3085,7 @@ proceed (CORE_ADDR addr, enum gdb_signal siggnal)
       switch_to_thread (tp->ptid);
       keep_going_pass_signal (ecs);
       if (!ecs->wait_some_more)
-	error ("Command aborted.");
+	error (_("Command aborted."));
     }
 
   discard_cleanups (old_chain);


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]