On 4/3/19 4:17 AM, Martin Liška wrote:
> Hi.
>
> The patch addresses wrong usage of apostrophes in error and warning
> messages. It's follow up of what I did couple of weeks ago.
>
> Patch can bootstrap on x86_64-linux-gnu and survives regression tests.
>
> Ready to be installed?
> Thanks,
> Martin
>
> contrib/ChangeLog:
>
> 2019-04-03 Martin Liska <mli...@suse.cz>
>
> PR translation/89935
> * check-internal-format-escaping.py: Properly detect wrong
> apostrophes.
>
> gcc/ChangeLog:
>
> 2019-04-03 Martin Liska <mli...@suse.cz>
>
> PR translation/89935
> * collect-utils.c (collect_execute): Use %< and %>, or %qs in
> order to wrap keywords or arguments.
> * collect2.c (main): Likewise.
> (scan_prog_file): Likewise.
> (scan_libraries): Likewise.
> * common/config/riscv/riscv-common.c
> (riscv_subset_list::parsing_subset_version): Likewise.
> (riscv_subset_list::parse_std_ext): Likewise.
> * config/aarch64/aarch64.c (aarch64_override_options_internal):
> Likewise.
> * config/arm/arm.c (arm_option_override): Likewise.
> * config/cris/cris.c (cris_print_operand): Likewise.
> * config/darwin-c.c (darwin_pragma_options): Likewise.
> (darwin_pragma_unused): Likewise.
> (darwin_pragma_ms_struct): Likewise.
> * config/ft32/ft32.c (ft32_print_operand): Likewise.
> * config/i386/i386.c (print_reg): Likewise.
> (ix86_print_operand): Likewise.
> * config/i386/xm-djgpp.h: Likewise.
> * config/iq2000/iq2000.c (iq2000_print_operand): Likewise.
> * config/m32c/m32c.c (m32c_option_override): Likewise.
> * config/msp430/msp430.c (msp430_option_override): Likewise.
> * config/nds32/nds32.c (nds32_option_override): Likewise.
> * config/nvptx/mkoffload.c (main): Likewise.
> * config/rx/rx.c (rx_print_operand): Likewise.
> (valid_psw_flag): Likewise.
> * config/vms/vms-c.c (vms_pragma_member_alignment): Likewise.
> (vms_pragma_nomember_alignment): Likewise.
> (vms_pragma_extern_model): Likewise.
> * lto-wrapper.c (compile_offload_image): Likewise.
> * omp-offload.c (oacc_parse_default_dims): Likewise.
> * symtab.c (symtab_node::verify_base): Likewise.
> * tlink.c (recompile_files): Likewise.
> (start_tweaking): Likewise.
> * tree-profile.c (parse_profile_filter): Likewise.
>
> gcc/objc/ChangeLog:
>
> 2019-04-03 Martin Liska <mli...@suse.cz>
>
> * objc-act.c (objc_add_property_declaration): Use %< and %>, or %qs in
> order to wrap keywords or arguments.
> (objc_add_synthesize_declaration_for_property): Likewise.
> ---
> contrib/check-internal-format-escaping.py | 2 +-
> gcc/collect-utils.c | 2 +-
> gcc/collect2.c | 10 +++++-----
> gcc/common/config/riscv/riscv-common.c | 12 ++++++------
> gcc/config/aarch64/aarch64.c | 4 ++--
> gcc/config/arm/arm.c | 2 +-
> gcc/config/cris/cris.c | 2 +-
> gcc/config/darwin-c.c | 24 +++++++++++------------
> gcc/config/ft32/ft32.c | 2 +-
> gcc/config/i386/i386.c | 4 ++--
> gcc/config/i386/xm-djgpp.h | 4 ++--
> gcc/config/iq2000/iq2000.c | 2 +-
> gcc/config/m32c/m32c.c | 2 +-
> gcc/config/msp430/msp430.c | 18 ++++++++---------
> gcc/config/nds32/nds32.c | 6 +++---
> gcc/config/nvptx/mkoffload.c | 2 +-
> gcc/config/rx/rx.c | 7 ++++---
> gcc/config/vms/vms-c.c | 15 +++++++-------
> gcc/lto-wrapper.c | 4 ++--
> gcc/objc/objc-act.c | 18 +++++++++++------
> gcc/omp-offload.c | 2 +-
> gcc/symtab.c | 2 +-
> gcc/tlink.c | 4 ++--
> gcc/tree-profile.c | 2 +-
> 24 files changed, 80 insertions(+), 72 deletions(-)
>
>
OK
jeff