Mercurial > hg > xemacs-beta
comparison src/compiler.h @ 4759:aa5ed11f473b
Remove support for obsolete systems. See xemacs-patches message with ID
<870180fe0911101613m6b8efa4bpf083fd9013950807@mail.gmail.com>.
author | Jerry James <james@xemacs.org> |
---|---|
date | Wed, 18 Nov 2009 08:49:14 -0700 |
parents | f386b9b92417 |
children | edc0cd26b4a8 |
comparison
equal
deleted
inserted
replaced
4758:75975fd0b7fc | 4759:aa5ed11f473b |
---|---|
160 | 160 |
161 /* More ways to shut up compiler. This works in Fcommand_loop_1(), | 161 /* More ways to shut up compiler. This works in Fcommand_loop_1(), |
162 where there's an infinite loop in a function returning a Lisp object. | 162 where there's an infinite loop in a function returning a Lisp object. |
163 */ | 163 */ |
164 #if (defined (_MSC_VER) && MSC_VERSION < 1300) || defined (__SUNPRO_C) || \ | 164 #if (defined (_MSC_VER) && MSC_VERSION < 1300) || defined (__SUNPRO_C) || \ |
165 defined (__SUNPRO_CC) || (defined (DEC_ALPHA) && defined (OSF1)) | 165 defined (__SUNPRO_CC) |
166 # define DO_NOTHING_DISABLING_NO_RETURN_WARNINGS if (0) return Qnil | 166 # define DO_NOTHING_DISABLING_NO_RETURN_WARNINGS if (0) return Qnil |
167 #else | 167 #else |
168 # define DO_NOTHING_DISABLING_NO_RETURN_WARNINGS DO_NOTHING | 168 # define DO_NOTHING_DISABLING_NO_RETURN_WARNINGS DO_NOTHING |
169 #endif | 169 #endif |
170 | 170 |