Mercurial > hg > xemacs-beta
annotate src/toolbar-xlike.h @ 4974:fe0d3106cc36
fix compile problems in bytecode.c when no error-check-byte-code (issue 666)
-------------------- ChangeLog entries follow: --------------------
src/ChangeLog addition:
2010-02-05 Ben Wing <ben@xemacs.org>
* bytecode.c (bytecode_assert):
Use 0 instead of x in disabled_assert calls to avoid errors due
to using undefined vars/params (they are defined only when
ERROR_CHECK_BYTE_CODE, which also turns on/off the asserts).
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Fri, 05 Feb 2010 04:07:47 -0600 |
parents | fce43cb76a1c |
children | 2aa9cd456ae7 |
rev | line source |
---|---|
4917 | 1 /* toolbar-xlike.h |
713 | 2 ** |
3 ** Description: | |
4 ** | |
5 ** Created by: William M. Perry | |
6 ** Copyright (c) 2001 Free Software Foundation | |
7 ** | |
8 */ | |
9 | |
4917 | 10 #ifndef __TOOLBAR_XLIKE_H__ |
11 #define __TOOLBAR_XLIKE_H__ | |
713 | 12 |
4917 | 13 extern void xlike_output_frame_toolbars (struct frame *f); |
14 extern void xlike_redraw_exposed_toolbars (struct frame *f, | |
713 | 15 int x, int y, |
16 int width, int height); | |
4917 | 17 extern void xlike_redraw_frame_toolbars (struct frame *f); |
18 extern void xlike_output_toolbar_button (struct frame *f, Lisp_Object button); | |
19 extern void xlike_clear_frame_toolbars (struct frame *f); | |
713 | 20 |
4917 | 21 #endif /* __TOOLBAR_XLIKE_H__ */ |