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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
25853
Dave Love <fx@gnu.org>
parents:
diff changeset
1 * Implement a clean way to use different major modes for
Dave Love <fx@gnu.org>
parents:
diff changeset
2 different parts of a buffer.
Dave Love <fx@gnu.org>
parents:
diff changeset
3
Dave Love <fx@gnu.org>
parents:
diff changeset
4 * Give start-process the ability to direct standard-error
Dave Love <fx@gnu.org>
parents:
diff changeset
5 output to a different filter.
Dave Love <fx@gnu.org>
parents:
diff changeset
6
Dave Love <fx@gnu.org>
parents:
diff changeset
7 * Make compile.el record the markers that point to error loci
Dave Love <fx@gnu.org>
parents:
diff changeset
8 on text properties in the error message lines.
Dave Love <fx@gnu.org>
parents:
diff changeset
9
Dave Love <fx@gnu.org>
parents:
diff changeset
10 * Make desktop.el save the "frame configuration" of Emacs (in some
Dave Love <fx@gnu.org>
parents:
diff changeset
11 useful sense).
Dave Love <fx@gnu.org>
parents:
diff changeset
12
Dave Love <fx@gnu.org>
parents:
diff changeset
13 * Make movemail work with IMAP.
Dave Love <fx@gnu.org>
parents:
diff changeset
14
Dave Love <fx@gnu.org>
parents:
diff changeset
15 * Add ANSI C prototype forward declarations to the source files,
Dave Love <fx@gnu.org>
parents:
diff changeset
16 so that even the functions used within one file have prototypes.
Dave Love <fx@gnu.org>
parents:
diff changeset
17
Dave Love <fx@gnu.org>
parents:
diff changeset
18 * Replace finder.el with something that generates an Info file
Dave Love <fx@gnu.org>
parents:
diff changeset
19 which gives the same information through a menu structure.
Dave Love <fx@gnu.org>
parents:
diff changeset
20
Dave Love <fx@gnu.org>
parents:
diff changeset
21 * Implement a variant of uncompress.el or jka-compr.el that
Dave Love <fx@gnu.org>
parents:
diff changeset
22 works with GNU Privacy Guard for encryption.
Dave Love <fx@gnu.org>
parents:
diff changeset
23
Dave Love <fx@gnu.org>
parents:
diff changeset
24 * Save undo information in files, and reload it when needed
Dave Love <fx@gnu.org>
parents:
diff changeset
25 for undoing.
Dave Love <fx@gnu.org>
parents:
diff changeset
26
Dave Love <fx@gnu.org>
parents:
diff changeset
27 * modify comint.el so that input appears in a special font.
Dave Love <fx@gnu.org>
parents:
diff changeset
28 I can add a simple Emacs feature to help.
Dave Love <fx@gnu.org>
parents:
diff changeset
29
Dave Love <fx@gnu.org>
parents:
diff changeset
30 * Implement other text formatting properties.
Dave Love <fx@gnu.org>
parents:
diff changeset
31 ** Footnotes that can appear either in place
Dave Love <fx@gnu.org>
parents:
diff changeset
32 or at the end of the page.
Dave Love <fx@gnu.org>
parents:
diff changeset
33 ** text property that says "don't break line in middle of this".
Dave Love <fx@gnu.org>
parents:
diff changeset
34 Don't break the line between two characters that have the
Dave Love <fx@gnu.org>
parents:
diff changeset
35 same value of this property.
Dave Love <fx@gnu.org>
parents:
diff changeset
36 ** Discretionary hyphens that disappear at end of line.
Dave Love <fx@gnu.org>
parents:
diff changeset
37
Dave Love <fx@gnu.org>
parents:
diff changeset
38 * Implement use of mmap to allocate buffers, when mmap exists.
Dave Love <fx@gnu.org>
parents:
diff changeset
39
Dave Love <fx@gnu.org>
parents:
diff changeset
40 * Change the Windows NT menu code
Dave Love <fx@gnu.org>
parents:
diff changeset
41 so that it handles the deep_p argument and avoids
Dave Love <fx@gnu.org>
parents:
diff changeset
42 regenerating the whole menu bar menu tree except
Dave Love <fx@gnu.org>
parents:
diff changeset
43 when the user tries to use the menubar.
Dave Love <fx@gnu.org>
parents:
diff changeset
44
Dave Love <fx@gnu.org>
parents:
diff changeset
45 This requires the RIT to forward the WM_INITMENU message to
Dave Love <fx@gnu.org>
parents:
diff changeset
46 the main thread, and not return from that message until the main
Dave Love <fx@gnu.org>
parents:
diff changeset
47 thread has processed the menu_bar_activate_event and regenerated
Dave Love <fx@gnu.org>
parents:
diff changeset
48 the whole menu bar. In the mean time, it should process other messages.