Mercurial > hg > xemacs-beta
annotate src/toolbar-xlike.h @ 5068:c673987f5f3d
dump make-coding-system
-------------------- ChangeLog entries follow: --------------------
lisp/ChangeLog addition:
2010-02-22 Ben Wing <ben@xemacs.org>
* mule/make-coding-system.el:
* mule/make-coding-system.el (fixed-width-generate-helper):
* mule/make-coding-system.el (fixed-width-private-use-start): Removed.
* mule/make-coding-system.el (fixed-width-create-decode-encode-tables):
* coding.el:
* coding.el (decode-char): New.
* coding.el (featurep):
* coding.el (encode-char): New.
* dumped-lisp.el (preloaded-file-list):
Dump make-coding-system. Aidan's hack to avoid dumping this file
never really worked right -- with some configurations (not clear
exactly which ones) `make-coding-system.el' gets dumped anyway due to
calls to `make-coding-system' in unicode.el, with the result that
the documentation of functions in make-coding-system.el gets lost.
Also needed to remove defvar fixed-width-private-use-start and
incorporate it inline, due to bootstrapping issues -- the call to
decode-char introduced a cross-dependency between unicode.el and
make-coding-system.el.
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Mon, 22 Feb 2010 21:26:18 -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__ */ |