Mercurial > hg > xemacs-beta
annotate src/toolbar-xlike.h @ 5281:aa20a889ff14
Remove a couple of redundant functions, backquote.el
2010-10-10 Aidan Kehoe <kehoea@parhasard.net>
* backquote.el (bq-vector-contents, bq-list*): Remove; the former
is equivalent to (append VECTOR nil), the latter to (list* ...).
(bq-process-2): Use (append VECTOR nil) instead of using
#'bq-vector-contents to convert to a list.
(bq-process-1): Now we use list* instead of bq-list
* subr.el (list*): Moved from cl.el, since it is now required to
be available the first time a backquoted form is encountered.
* cl.el (list*): Move to subr.el.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sun, 10 Oct 2010 12:13:32 +0100 |
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__ */ |