comparison src/os_mac.h @ 2315:2e6dbc2fccd4 vim73

Remove obsolete Mac code.
author Bram Moolenaar <bram@vim.org>
date Wed, 14 Jul 2010 20:31:44 +0200
parents 543ea69d037f
children 04736b4030ec
comparison
equal deleted inserted replaced
2314:233eb4412f5d 2315:2e6dbc2fccd4
297 # define HAVE_PUTENV 297 # define HAVE_PUTENV
298 #endif 298 #endif
299 299
300 /* A Mac constant causing big problem to syntax highlighting */ 300 /* A Mac constant causing big problem to syntax highlighting */
301 #define UNKNOWN_CREATOR '\?\?\?\?' 301 #define UNKNOWN_CREATOR '\?\?\?\?'
302
303 /*
304 * for debugging
305 */
306 #ifdef MACOS_X
307 # ifdef _DEBUG
308 # define TRACE Trace
309 void Trace(char *fmt, ...);
310 # else
311 # define TRACE 1 ? (void)0 : printf
312 # endif
313 #endif