diff options
author | Neil Booth <neilb@earthling.net> | 2000-11-28 23:07:29 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2000-11-28 23:07:29 +0000 |
commit | eaf299c6ca247c0fba4007c790f61cb76cb3a083 (patch) | |
tree | e3cde7fd2d23d28964ce6ff14c67773db150e4d9 /gcc/c-common.h | |
parent | 045edebeb35e5b5abd28b0e06d2e254387fcfae9 (diff) | |
download | gcc-eaf299c6ca247c0fba4007c790f61cb76cb3a083.zip gcc-eaf299c6ca247c0fba4007c790f61cb76cb3a083.tar.gz gcc-eaf299c6ca247c0fba4007c790f61cb76cb3a083.tar.bz2 |
c-common.h: Remove flag_digraphs.
* c-common.h: Remove flag_digraphs.
* c-decl.c: Remove flag_digraphs.
(c_decode_option): Don't set it.
* c-lex.c (init_c_lex): Don't do anything for digraphs.
From-SVN: r37834
Diffstat (limited to 'gcc/c-common.h')
-rw-r--r-- | gcc/c-common.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gcc/c-common.h b/gcc/c-common.h index 94c89cf..9590380 100644 --- a/gcc/c-common.h +++ b/gcc/c-common.h @@ -361,7 +361,7 @@ extern int warn_missing_format_attribute; extern int flag_traditional; -/* Nonzero means enable C89 Amendment 1 features, other than digraphs. */ +/* Nonzero means enable C89 Amendment 1 features. */ extern int flag_isoc94; @@ -369,10 +369,6 @@ extern int flag_isoc94; extern int flag_isoc99; -/* Nonzero means accept digraphs. */ - -extern int flag_digraphs; - /* Nonzero means environment is hosted (i.e., not freestanding) */ extern int flag_hosted; |