Deleted Added
full compact
init.c (259405) init.c (259890)
1/* CPP Library.
2 Copyright (C) 1986, 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
4 Contributed by Per Bothner, 1994-95.
5 Based on CCCP program by Paul Rubin, June 1986
6 Adapted to ANSI C, Richard Stallman, Jan 1987
7
8This program is free software; you can redistribute it and/or modify it

--- 132 unchanged lines hidden (view full) ---

141 cpp_reader *pfile;
142
143 /* Initialize this instance of the library if it hasn't been already. */
144 init_library ();
145
146 pfile = XCNEW (cpp_reader);
147
148 cpp_set_lang (pfile, lang);
1/* CPP Library.
2 Copyright (C) 1986, 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
4 Contributed by Per Bothner, 1994-95.
5 Based on CCCP program by Paul Rubin, June 1986
6 Adapted to ANSI C, Richard Stallman, Jan 1987
7
8This program is free software; you can redistribute it and/or modify it

--- 132 unchanged lines hidden (view full) ---

141 cpp_reader *pfile;
142
143 /* Initialize this instance of the library if it hasn't been already. */
144 init_library ();
145
146 pfile = XCNEW (cpp_reader);
147
148 cpp_set_lang (pfile, lang);
149 /* APPLE LOCAL begin -Wnewline-eof 2001-08-23 --sts */
150 /* Suppress warnings about missing newlines at ends of files. */
151 CPP_OPTION (pfile, warn_newline_at_eof) = 0;
152 /* APPLE LOCAL end -Wnewline-eof 2001-08-23 --sts */
149 CPP_OPTION (pfile, warn_multichar) = 1;
150 CPP_OPTION (pfile, discard_comments) = 1;
151 CPP_OPTION (pfile, discard_comments_in_macro_exp) = 1;
152 CPP_OPTION (pfile, show_column) = 1;
153 CPP_OPTION (pfile, tabstop) = 8;
154 CPP_OPTION (pfile, operator_names) = 1;
155 CPP_OPTION (pfile, warn_trigraphs) = 2;
156 CPP_OPTION (pfile, warn_endif_labels) = 1;

--- 492 unchanged lines hidden ---
153 CPP_OPTION (pfile, warn_multichar) = 1;
154 CPP_OPTION (pfile, discard_comments) = 1;
155 CPP_OPTION (pfile, discard_comments_in_macro_exp) = 1;
156 CPP_OPTION (pfile, show_column) = 1;
157 CPP_OPTION (pfile, tabstop) = 8;
158 CPP_OPTION (pfile, operator_names) = 1;
159 CPP_OPTION (pfile, warn_trigraphs) = 2;
160 CPP_OPTION (pfile, warn_endif_labels) = 1;

--- 492 unchanged lines hidden ---