Mercurial > hg > xemacs-beta
comparison src/compiler.h @ 4860:edc0cd26b4a8
fix more build problems
-------------------- ChangeLog entries follow: --------------------
src/ChangeLog addition:
2010-01-14 Ben Wing <ben@xemacs.org>
* buffer.h:
* compiler.h:
Don't use USED_IF_MULE_OR_CHECK_TEXT in buffer.h. Eliminate since
not used anywhere any more.
* font-mgr.c (fontset_to_list):
* font-mgr.c (Ffc_config_substitute):
Don't use Fsignal() as it may return. Use signal_error() instead
or a more specific function such as invalid_state() or wtaerror().
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Thu, 14 Jan 2010 06:00:09 -0600 |
parents | aa5ed11f473b |
children | b3ce27ca7647 8b63e21b0436 |
comparison
equal
deleted
inserted
replaced
4859:262b29aedd54 | 4860:edc0cd26b4a8 |
---|---|
236 # ifdef MULE | 236 # ifdef MULE |
237 # define USED_IF_MULE(decl) decl | 237 # define USED_IF_MULE(decl) decl |
238 # else | 238 # else |
239 # define USED_IF_MULE(decl) UNUSED (decl) | 239 # define USED_IF_MULE(decl) UNUSED (decl) |
240 # endif | 240 # endif |
241 # if defined (MULE) || defined (ERROR_CHECK_TEXT) | |
242 # define USED_IF_MULE_OR_CHECK_TEXT(decl) decl | |
243 # else | |
244 # define USED_IF_MULE_OR_CHECK_TEXT(decl) UNUSED (decl) | |
245 # endif | |
246 # ifdef USE_XFT | 241 # ifdef USE_XFT |
247 # define USED_IF_XFT(decl) decl | 242 # define USED_IF_XFT(decl) decl |
248 # else | 243 # else |
249 # define USED_IF_XFT(decl) UNUSED (decl) | 244 # define USED_IF_XFT(decl) UNUSED (decl) |
250 # endif | 245 # endif |