diff options
author | Joseph Myers <joseph@codesourcery.com> | 2010-01-11 04:28:36 +0000 |
---|---|---|
committer | Shujing Zhao <pzhao@gcc.gnu.org> | 2010-01-11 04:28:36 +0000 |
commit | f94e1d66dad5e6662b0b9b613431b31db0c2d032 (patch) | |
tree | 6da9b5591db4c4d4d899fdcd54c5d47b13baa8fb /gcc | |
parent | 06bfe1d0e2c40805cc6fa1d8d39f59c4d529965f (diff) | |
download | gcc-f94e1d66dad5e6662b0b9b613431b31db0c2d032.zip gcc-f94e1d66dad5e6662b0b9b613431b31db0c2d032.tar.gz gcc-f94e1d66dad5e6662b0b9b613431b31db0c2d032.tar.bz2 |
re PR translation/42467 (exgettext should not remove TABs from option help strings)
gcc/po/
2010-01-11 Joseph Myers <joseph@codesourcery.com>
Shujing Zhao <pearly.zhao@oracle.com>
PR translation/42467
* exgettext: Keep the text before tab character in the option help
string at *.opt file.
gcc/
2010-01-11 Joseph Myers <joseph@codesourcery.com>
Shujing Zhao <pearly.zhao@oracle.com>
PR translation/42469
* common.opt (Wframe-larger-than=, fcompare-debug=, fdbg-cnt=,
fira-verbose=, flto-compression-level=, fplugin-arg-): Use tab
character between option name and help text.
* c.opt (imultilib): Likewise.
gcc/fortran
2010-01-11 Joseph Myers <joseph@codesourcery.com>
Shujing Zhao <pearly.zhao@oracle.com>
PR translation/42469
* lang.opt (fblas-matmul-limit=, finit-character=, finit-integer=,
finit-logical=, finit-real=, fmax-array-constructor=): Use tab
character between option name and help text.
Co-Authored-By: Shujing Zhao <pearly.zhao@oracle.com>
From-SVN: r155801
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 9 | ||||
-rw-r--r-- | gcc/c.opt | 2 | ||||
-rw-r--r-- | gcc/common.opt | 12 | ||||
-rw-r--r-- | gcc/fortran/ChangeLog | 8 | ||||
-rw-r--r-- | gcc/fortran/lang.opt | 12 | ||||
-rw-r--r-- | gcc/po/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/po/exgettext | 1 |
7 files changed, 37 insertions, 14 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a5ef0cf..2c1e715 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,12 @@ +2010-01-11 Joseph Myers <joseph@codesourcery.com> + Shujing Zhao <pearly.zhao@oracle.com> + + PR translation/42469 + * common.opt (Wframe-larger-than=, fcompare-debug=, fdbg-cnt=, + fira-verbose=, flto-compression-level=, fplugin-arg-): Use tab + character between option name and help text. + * c.opt (imultilib): Likewise. + 2010-01-10 Rafael Avila de Espindola <espindola@google.com> * lto-streamer-out.c (output_unreferenced_globals): Output static @@ -875,7 +875,7 @@ C ObjC C++ ObjC++ Joined Separate imultilib C ObjC C++ ObjC++ Joined Separate --imultilib <dir> Set <dir> to be the multilib include subdirectory +-imultilib <dir> Set <dir> to be the multilib include subdirectory include C ObjC C++ ObjC++ Joined Separate diff --git a/gcc/common.opt b/gcc/common.opt index 8e8ed76..6e369e5 100644 --- a/gcc/common.opt +++ b/gcc/common.opt @@ -115,7 +115,7 @@ Exit on the first error occurred Wframe-larger-than= Common RejectNegative Joined UInteger --Wframe-larger-than=<number> Warn if a function's stack frame requires more than <number> bytes +-Wframe-larger-than=<number> Warn if a function's stack frame requires more than <number> bytes Winline Common Var(warn_inline) Warning @@ -386,7 +386,7 @@ Do not put uninitialized globals in the common section fcompare-debug= Common JoinedOrMissing RejectNegative Var(flag_compare_debug_opt) --fcompare-debug[=<opts>] Compile with and without e.g. -gtoggle, and compare the final-insns dump +-fcompare-debug[=<opts>] Compile with and without e.g. -gtoggle, and compare the final-insns dump fcompare-debug-second Common RejectNegative Var(flag_compare_debug) @@ -430,7 +430,7 @@ List all available debugging counters with their limits and counts. fdbg-cnt= Common RejectNegative Joined --fdbg-cnt=<counter>:<limit>[,<counter>:<limit>,...] Set the debug counter limit. +-fdbg-cnt=<counter>:<limit>[,<counter>:<limit>,...] Set the debug counter limit. fdebug-prefix-map= Common Joined RejectNegative @@ -736,7 +736,7 @@ Share stack slots for spilled pseudo-registers. fira-verbose= Common RejectNegative Joined UInteger --fira-verbose=<number> Control IRA's level of diagnostic messages. +-fira-verbose=<number> Control IRA's level of diagnostic messages. fivopts Common Report Var(flag_ivopts) Init(1) Optimization @@ -769,7 +769,7 @@ Enable link-time optimization. ; The initial value of -1 comes from Z_DEFAULT_COMPRESSION in zlib.h. flto-compression-level= Common Joined UInteger Var(flag_lto_compression_level) Init(-1) --flto-compression-level=<number> Use zlib compression level <number> for IL +-flto-compression-level=<number> Use zlib compression level <number> for IL flto-report Common Report Var(flag_lto_report) Init(0) Optimization @@ -908,7 +908,7 @@ Specify a plugin to load fplugin-arg- Common Joined RejectNegative --fplugin-arg-<name>-<key>[=<value>] Specify argument <key>=<value> for plugin <name> +-fplugin-arg-<name>-<key>[=<value>] Specify argument <key>=<value> for plugin <name> fpredictive-commoning Common Report Var(flag_predictive_commoning) Optimization diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index d6ec8aa..09bfccf 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,11 @@ +2010-01-11 Joseph Myers <joseph@codesourcery.com> + Shujing Zhao <pearly.zhao@oracle.com> + + PR translation/42469 + * lang.opt (fblas-matmul-limit=, finit-character=, finit-integer=, + finit-logical=, finit-real=, fmax-array-constructor=): Use tab + character between option name and help text. + 2010-01-09 Jerry DeLisle <jvdelisle@gcc.gnu.org> PR fortran/20923 diff --git a/gcc/fortran/lang.opt b/gcc/fortran/lang.opt index 10f4a89..b64dbc7 100644 --- a/gcc/fortran/lang.opt +++ b/gcc/fortran/lang.opt @@ -166,7 +166,7 @@ Produce a backtrace when a runtime error is encountered fblas-matmul-limit= Fortran RejectNegative Joined UInteger --fblas-matmul-limit=<n> Size of the smallest matrix for which matmul will use BLAS +-fblas-matmul-limit=<n> Size of the smallest matrix for which matmul will use BLAS fcheck-array-temporaries Fortran @@ -270,11 +270,11 @@ Specify that no implicit typing is allowed, unless overridden by explicit IMPLIC finit-character= Fortran RejectNegative Joined UInteger --finit-character=<n> Initialize local character variables to ASCII value n +-finit-character=<n> Initialize local character variables to ASCII value n finit-integer= Fortran RejectNegative Joined --finit-integer=<n> Initialize local integer variables to n +-finit-integer=<n> Initialize local integer variables to n finit-local-zero Fortran @@ -282,15 +282,15 @@ Initialize local variables to zero (from g77) finit-logical= Fortran RejectNegative Joined --finit-logical=<true|false> Initialize local logical variables +-finit-logical=<true|false> Initialize local logical variables finit-real= Fortran RejectNegative Joined --finit-real=<zero|nan|inf|-inf> Initialize local real variables +-finit-real=<zero|nan|inf|-inf> Initialize local real variables fmax-array-constructor= Fortran RejectNegative Joined UInteger --fmax-array-constructor=<n> Maximum number of objects in an array constructor +-fmax-array-constructor=<n> Maximum number of objects in an array constructor fmax-errors= Fortran RejectNegative Joined UInteger diff --git a/gcc/po/ChangeLog b/gcc/po/ChangeLog index 1a317c3..bdc551f 100644 --- a/gcc/po/ChangeLog +++ b/gcc/po/ChangeLog @@ -1,3 +1,10 @@ +2010-01-11 Joseph Myers <joseph@codesourcery.com> + Shujing Zhao <pearly.zhao@oracle.com> + + PR translation/42467 + * exgettext: Keep the text before tab character in the option help + string at *.opt file. + 2010-01-10 Joseph Myers <joseph@codesourcery.com> * sv.po: Update. diff --git a/gcc/po/exgettext b/gcc/po/exgettext index 6b784e4..9c22482 100644 --- a/gcc/po/exgettext +++ b/gcc/po/exgettext @@ -197,7 +197,6 @@ echo "scanning option files..." >&2 } else { if (field == 2) { line = $0 - gsub(".*\t", "", line) printf("#line %d \"%s\"\n", lineno, file) printf("_(\"%s\")\n", line) } |