This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC 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]

Remove redundant tab from option name and help text


Hi

Some options help strings have more than one tab between option name and help text. That caused the output of help can't be aligned. This patch is to remove the redundant tab.

Tested on i686-pc-linux-gnu.

Is it ok for trunk?

Thanks
Pearly
gcc/
2010-03-17  Shujing Zhao  <pearly.zhao@oracle.com>

	* common.opt (dumpdir): Remove the redundant tab.

gcc/fortran
2010-03-17  Shujing Zhao  <pearly.zhao@oracle.com>

	* lang.opt (-ffixed-line-length-, ffree-line-length-): Remove the
	redundant tab. 

Index: fortran/lang.opt
===================================================================
--- fortran/lang.opt	(revision 157334)
+++ fortran/lang.opt	(working copy)
@@ -246,7 +246,7 @@
 
 ffixed-line-length-
 Fortran RejectNegative Joined UInteger
--ffixed-line-length-<n>		Use n as character line width in fixed mode
+-ffixed-line-length-<n>	Use n as character line width in fixed mode
 
 ffpe-trap=
 Fortran RejectNegative JoinedOrMissing
@@ -262,7 +262,7 @@
 
 ffree-line-length-
 Fortran RejectNegative Joined UInteger
--ffree-line-length-<n>		Use n as character line width in free mode
+-ffree-line-length-<n>	Use n as character line width in free mode
 
 fimplicit-none
 Fortran
Index: common.opt
===================================================================
--- common.opt	(revision 157334)
+++ common.opt	(working copy)
@@ -255,7 +255,7 @@
 
 dumpdir
 Common Separate
--dumpdir <dir>		Set the directory name to be used for dumps
+-dumpdir <dir>	Set the directory name to be used for dumps
 
 ; The version of the C++ ABI in use.  The following values are allowed:
 ;

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