diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1996-10-09 16:26:20 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1996-10-09 16:26:20 -0400 |
commit | 9974098acc28f657f5c8d7de8948a37ee821e4be (patch) | |
tree | e8ef60a3fa95d503807098e88d992d4c00edaf2a /gcc/cpplib.h | |
parent | 9e979f8fd8fb1ac8a2402e5c3b9e4f4a51783712 (diff) | |
download | gcc-9974098acc28f657f5c8d7de8948a37ee821e4be.zip gcc-9974098acc28f657f5c8d7de8948a37ee821e4be.tar.gz gcc-9974098acc28f657f5c8d7de8948a37ee821e4be.tar.bz2 |
(DOLLARS_IN_IDENTIFIERS): Remove.
From-SVN: r12936
Diffstat (limited to 'gcc/cpplib.h')
-rw-r--r-- | gcc/cpplib.h | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h index aa3e327..d802a4a 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -1,5 +1,5 @@ /* Definitions for CPP library. - Copyright (C) 1995 Free Software Foundation, Inc. + Copyright (C) 1995, 1996 Free Software Foundation, Inc. Written by Per Bothner, 1994-95. This program is free software; you can redistribute it and/or modify it @@ -423,17 +423,10 @@ struct cpp_options { so don't look for #include "foo" the source-file directory. */ char ignore_srcdir; -/* Zero means dollar signs are punctuation. - -$ stores 0; -traditional may store 1. Default is 1 for VMS, 0 otherwise. - This must be 0 for correct processing of this ANSI C program: - #define foo(a) #a - #define lose(b) foo (b) - #define test$ - lose (test) */ + /* Zero means dollar signs are punctuation. + This used to be needed for conformance to the C Standard, + before the C Standard was corrected. */ char dollars_in_ident; -#ifndef DOLLARS_IN_IDENTIFIERS -#define DOLLARS_IN_IDENTIFIERS 1 -#endif /* Nonzero means try to imitate old fashioned non-ANSI preprocessor. */ char traditional; |