comparison src/compiler.h @ 4962:e813cf16c015

merge
author Ben Wing <ben@xemacs.org>
date Mon, 01 Feb 2010 05:29:05 -0600
parents 8b63e21b0436 b3ce27ca7647
children cbe181529c34
comparison
equal deleted inserted replaced
4961:b90f8cf474e0 4962:e813cf16c015
248 # else 248 # else
249 # define USED_IF_SCROLLBARS(decl) UNUSED (decl) 249 # define USED_IF_SCROLLBARS(decl) UNUSED (decl)
250 # endif 250 # endif
251 #endif /* UNUSED */ 251 #endif /* UNUSED */
252 252
253 /* Declaration that variable or expression X is "used" to defeat
254 "unused variable" warnings. DON'T DO THIS FOR PARAMETERS IF IT ALL
255 POSSIBLE. Use an UNUSED() or USED_IF_*() declaration on the parameter
256 instead. Don't do this for unused local variables that should really
257 just be deleted. */
258 #define USED(x) ((void) (x))
259
253 #ifdef DEBUG_XEMACS 260 #ifdef DEBUG_XEMACS
254 # define REGISTER 261 # define REGISTER
255 # define register 262 # define register
256 #else 263 #else
257 # define REGISTER register 264 # define REGISTER register