Mercurial > hg > xemacs-beta
diff src/buffer.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 | 141c2920ea48 |
children | 6ef8256a020a |
line wrap: on
line diff
--- a/src/buffer.h Thu Jan 14 02:42:58 2010 -0600 +++ b/src/buffer.h Thu Jan 14 06:00:09 2010 -0600 @@ -543,7 +543,7 @@ DECLARE_INLINE_HEADER ( Bytebpos -prev_bytebpos (struct buffer *USED_IF_MULE_OR_CHECK_TEXT (buf), Bytebpos x) +prev_bytebpos (struct buffer *buf, Bytebpos x) ) { DEC_BYTEBPOS (buf, x); @@ -552,7 +552,7 @@ DECLARE_INLINE_HEADER ( Bytebpos -next_bytebpos (struct buffer *USED_IF_MULE_OR_CHECK_TEXT (buf), Bytebpos x) +next_bytebpos (struct buffer *buf, Bytebpos x) ) { INC_BYTEBPOS (buf, x); @@ -587,8 +587,7 @@ DECLARE_INLINE_HEADER ( Bytebpos -charbpos_to_bytebpos (struct buffer *USED_IF_MULE_OR_CHECK_TEXT (buf), - Charbpos x) +charbpos_to_bytebpos (struct buffer *buf, Charbpos x) ) { Bytebpos retval; @@ -620,8 +619,7 @@ DECLARE_INLINE_HEADER ( Charbpos -bytebpos_to_charbpos (struct buffer *USED_IF_MULE_OR_CHECK_TEXT (buf), - Bytebpos x) +bytebpos_to_charbpos (struct buffer *buf, Bytebpos x) ) { Charbpos retval;