view src/toolbar-xlike.h @ 5461:568ec109e73d

Check types (unless `byte-compile-delete-errors' is t), #'char<, #'char=, etc. src/ChangeLog addition: 2011-04-23 Aidan Kehoe <kehoea@parhasard.net> * editfns.c: * editfns.c (syms_of_editfns): Implement #'char= in cl-extra.el, not here, accepting more than two arguments as Common Lisp specifies. lisp/ChangeLog addition: 2011-04-23 Aidan Kehoe <kehoea@parhasard.net> * cl-extra.el (define-char-comparisons): Add type-checking when the various character-specific comparison predicates are used; don't check types if byte-compile-delete-errors is non-nil at compile-time, instead use the corresponding built-in numeric byte codes.
author Aidan Kehoe <kehoea@parhasard.net>
date Sat, 23 Apr 2011 22:42:10 +0100
parents fce43cb76a1c
children 2aa9cd456ae7
line wrap: on
line source

/* toolbar-xlike.h
**
** Description: 
**
** Created by: William M. Perry
** Copyright (c) 2001 Free Software Foundation
**
*/

#ifndef __TOOLBAR_XLIKE_H__
#define __TOOLBAR_XLIKE_H__

extern void xlike_output_frame_toolbars (struct frame *f);
extern void xlike_redraw_exposed_toolbars (struct frame *f,
					    int x, int y,
					    int width, int height);
extern void xlike_redraw_frame_toolbars (struct frame *f);
extern void xlike_output_toolbar_button (struct frame *f, Lisp_Object button);
extern void xlike_clear_frame_toolbars (struct frame *f);

#endif /* __TOOLBAR_XLIKE_H__ */