Mercurial > emacs
annotate etc/TODO @ 26847:2f17ea330dae
Include composite.h.
(DECODE_CHARACTER_ASCII): Don't handle composition here.
(DECODE_CHARACTER_DIMENSION1): Likewise. Don't check the validity
of multibyte code here.
(DECODE_CHARACTER_DIMENSION2): Likewise.
(detect_coding_emacs_mule): Change the case label from
EMACS_leading_code_composition to 0x80.
(detect_coding_iso2022): Handle new composition sequence.
(DECODE_ISO_CHARACTER): Likewise.
(check_composing_code): Deleted.
(coding_allocate_composition_data): New function.
(CODING_ADD_COMPOSITION_START) (CODING_ADD_COMPOSITION_END)
(CODING_ADD_COMPOSITION_COMPONENT) (DECODE_COMPOSITION_START)
(DECODE_COMPOSITION_END) (DECODE_COMPOSITION_RULE): New macros.
(decode_coding_iso2022): Handle new composition sequence.
(ENCODE_ISO_CHARACTER): Don't check composition here.
(ENCODE_COMPOSITION_RULE) (ENCODE_COMPOSITION_START): New macros.
(ENCODE_COMPOSITION_NO_RULE_START)
(ENCODE_COMPOSITION_WITH_RULE_START): Deleted.
(ENCODE_COMPOSITION_END): Handle new composition sequence.
(ENCODE_COMPOSITION_FAKE_START): New macro.
(encode_coding_iso2022): Handle new composition sequence.
(ENCODE_SJIS_BIG5_CHARACTER): Delete superfluous `;' at the tail.
(encode_coding_sjis_big5): Ignore composition.
(setup_coding_system): Initialize new members of struct
coding_system. Enable composition only when the coding system has
`composition' property t.
(coding_free_composition_data) (coding_adjust_composition_offset)
(coding_save_composition) (coding_restore_composition): New
functions.
(code_convert_region): Call coding_save_composition for encoding
and coding_allocate_composition_data for decoding. Don't skip
ASCII characters if we handle composition on encoding. Call
signal_after_change with Check_BORDER.
(code_convert_string): Call coding_save_composition for encoding
and coding_allocate_composition_data for decoding. Don't skip
ASCII characters if we handle composition on encoding.
(code_convert_string1): Set Vlast_coding_system_used after calling
code_convert_string.
(code_convert_string_norecord): Disable composition.
(Fset_terminal_coding_system_internal): Likewise.
(Fset_safe_terminal_coding_system_internal): Likewise.
(Fset_keyboard_coding_system_internal): Likewise.
(init_coding_once): Set emacs_code_class[0x80] to
EMACS_invalid_code.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 15 Dec 1999 00:06:45 +0000 |
parents | e96ffe544684 |
children | e06c6af9d981 |
rev | line source |
---|---|
25853 | 1 * Implement a clean way to use different major modes for |
2 different parts of a buffer. | |
3 | |
4 * Give start-process the ability to direct standard-error | |
5 output to a different filter. | |
6 | |
7 * Make compile.el record the markers that point to error loci | |
8 on text properties in the error message lines. | |
9 | |
10 * Make desktop.el save the "frame configuration" of Emacs (in some | |
11 useful sense). | |
12 | |
13 * Make movemail work with IMAP. | |
14 | |
15 * Add ANSI C prototype forward declarations to the source files, | |
16 so that even the functions used within one file have prototypes. | |
17 | |
18 * Replace finder.el with something that generates an Info file | |
19 which gives the same information through a menu structure. | |
20 | |
21 * Implement a variant of uncompress.el or jka-compr.el that | |
22 works with GNU Privacy Guard for encryption. | |
23 | |
24 * Save undo information in files, and reload it when needed | |
25 for undoing. | |
26 | |
27 * modify comint.el so that input appears in a special font. | |
28 I can add a simple Emacs feature to help. | |
29 | |
30 * Implement other text formatting properties. | |
31 ** Footnotes that can appear either in place | |
32 or at the end of the page. | |
33 ** text property that says "don't break line in middle of this". | |
34 Don't break the line between two characters that have the | |
35 same value of this property. | |
36 ** Discretionary hyphens that disappear at end of line. | |
37 | |
38 * Implement use of mmap to allocate buffers, when mmap exists. | |
39 | |
40 * Change the Windows NT menu code | |
41 so that it handles the deep_p argument and avoids | |
42 regenerating the whole menu bar menu tree except | |
43 when the user tries to use the menubar. | |
44 | |
45 This requires the RIT to forward the WM_INITMENU message to | |
46 the main thread, and not return from that message until the main | |
47 thread has processed the menu_bar_activate_event and regenerated | |
48 the whole menu bar. In the mean time, it should process other messages. |