This is the mail archive of the binutils@sourceware.org mailing list for the binutils 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]

[PATCH] gold: Remove leading space from some options' help text


Nearly obvious.  OK for trunk?
I'm inclined to put this on the 2.23 branch too, but I'm not sure if
it's actually better to avoid changing msgid strings on a release branch.
What say you?


Thanks,
Roland


gold/
2013-05-10  Roland McGrath  <mcgrathr@google.com>

	* options.h (General_options): Remove leading space from help
	messages for -nostdlib and --rosegment.

--- a/gold/options.h
+++ b/gold/options.h
@@ -1,6 +1,7 @@
 // options.h -- handle command line options for gold  -*- C++ -*-

-// Copyright 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
+// Copyright 2006, 2007, 2008, 2009, 2010, 2011, 2013
+// Free Software Foundation, Inc.
 // Written by Ian Lance Taylor <iant@google.com>.

 // This file is part of gold.
@@ -919,11 +920,11 @@ class General_options
 	      N_("Disable text section reordering for GCC section names"));

   DEFINE_bool(nostdlib, options::ONE_DASH, '\0', false,
-              N_(" Only search directories specified on the command line."),
+	      N_("Only search directories specified on the command line."),
 	      NULL);

   DEFINE_bool(rosegment, options::TWO_DASHES, '\0', false,
-              N_(" Put read-only non-executable sections in their own
segment"),
+	      N_("Put read-only non-executable sections in their own segment"),
 	      NULL);

   DEFINE_string(m, options::EXACTLY_ONE_DASH, 'm', "",


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