diff options
author | Joseph Myers <jsm@polyomino.org.uk> | 2004-05-24 20:28:20 +0100 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2004-05-24 20:28:20 +0100 |
commit | a668adb2f3bbe7e4b6f6aee2ca721b8e466d2ee7 (patch) | |
tree | 8e604d480ecc6f087099ac7d2f0f4f6d9b68c228 /gcc/intl.h | |
parent | 1bfc8f675bee787718c1f5d24a300d7b86107fea (diff) | |
download | gcc-a668adb2f3bbe7e4b6f6aee2ca721b8e466d2ee7.zip gcc-a668adb2f3bbe7e4b6f6aee2ca721b8e466d2ee7.tar.gz gcc-a668adb2f3bbe7e4b6f6aee2ca721b8e466d2ee7.tar.bz2 |
intl.h (open_quote, [...]): New.
* intl.h (open_quote, close_quote): New.
* intl.c (open_quote, close_quote): New.
(gcc_init_libintl): Set them.
* pretty-print.c: Include "intl.h".
(pp_base_format_text): Support 'q' format flag and %` and %'
formats. Use ' instead of ` in comments.
* c-format.c (gcc_diag_flag_specs, gcc_cxxdiag_flag_specs,
gcc_diag_char_table, gcc_cdiag_char_table, gcc_cxxdiag_char_table,
foramt_types_orig): Describe these new formats.
(decode_format_attr, check_function_format,
check_format_info_main): Use these new formats.
(status_warning): Use ATTRIBUTE_GCC_DIAG.
* toplev.c (ATTRIBUTE_GCC_DIAG): Increase required GCC version to
check these formats to 3.5.
From-SVN: r82215
Diffstat (limited to 'gcc/intl.h')
-rw-r--r-- | gcc/intl.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,5 @@ /* intl.h - internationalization - Copyright 1998, 2001, 2003 Free Software Foundation, Inc. + Copyright 1998, 2001, 2003, 2004 Free Software Foundation, Inc. GCC is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -51,4 +51,7 @@ extern size_t gcc_gettext_width (const char *); # define N_(msgid) msgid #endif +extern const char *open_quote; +extern const char *close_quote; + #endif /* intl.h */ |