89231
|
1 -*-mode: text; coding: latin-1;-*-
|
88740
|
2
|
|
3 Problems, fixmes and other issues in the emacs-unicode branch
|
88884
|
4 -------------------------------------------------------------
|
88740
|
5
|
88836
|
6 Notes by fx to record various things of variable importance. handa
|
|
7 needs to check them -- don't take too seriously, especially with
|
|
8 regard to completeness.
|
88740
|
9
|
88884
|
10 _Do take seriously that you don't want this branch unless you're
|
|
11 actually working on it; you risk your data by actually using it._ If
|
|
12 you just want to edit Unicode and/or unify iso-8859 et al, see the
|
|
13 existing support and the extra stuff at
|
|
14 <URL:ftp://dlpx1.dl.ac.uk/fx/emacs/Mule>, mostly now in the CVS trunk.
|
|
15 (Editing support is mostly orthogonal to the internal representation.)
|
88740
|
16
|
88884
|
17 * SINGLE_BYTE_CHAR_P returns true for Latin-1 characters, which has
|
89190
|
18 undesirable effects. E.g.:
|
|
19 (multibyte-string-p (let ((s "x")) (aset s 0 ?£) s)) => nil
|
|
20 (multibyte-string-p (concat [?£])) => nil
|
|
21 (text-char-description ?£) => "M-#"
|
88740
|
22
|
89215
|
23 These examples are all fixed by the change of 2002-10-14, but
|
|
24 there still exist questionalble SINGLE_BYTE_CHAR_P in the
|
|
25 code.
|
|
26
|
88740
|
27 * Rationalize character syntax and its relationship to the Unicode
|
89190
|
28 database. (Applies mainly to symbol an punctuation syntax.)
|
88740
|
29
|
88884
|
30 * Fontset handling and customization needs work. We want to relate
|
|
31 fonts to scripts, probably based on the Unicode blocks. The
|
|
32 presence of small-repertoire 10646-encoded fonts in XFree 4 is a
|
|
33 pain, not currently worked round.
|
88740
|
34
|
88979
|
35 With the change on 2002-07-26, multiple fonts can be
|
|
36 specified in a fontset for a specific range of characters.
|
|
37 Each range can also be specified by script. Before using
|
|
38 ISO10646 fonts, Emacs checks their repertories to avoid such
|
|
39 fonts that don't have a glyph for a specific character.
|
88891
|
40
|
88884
|
41 * Work is also needed on charset and coding system priorities.
|
88740
|
42
|
|
43 * The relevant bits of latin1-disp.el need porting (and probably
|
|
44 re-naming/updating). See also cyril-util.el.
|
|
45
|
88884
|
46 * Quail files need more work now the encoding is irrelevant.
|
88740
|
47
|
|
48 * What to do with the old coding categories stuff?
|
|
49
|
|
50 * The preferred-coding-system property of charsets should probably be
|
|
51 junked unless it can be made more useful now.
|
|
52
|
|
53 * find-multibyte-characters needs looking at.
|
|
54
|
89190
|
55 * Implement Korean cp949/UHC, BIG5-HKSCS and any other important missing
|
88740
|
56 charsets.
|
|
57
|
89190
|
58 * Check up on definition of alternativnj.
|
88740
|
59
|
|
60 * Lazy-load tables for unify-charset somehow?
|
|
61
|
88979
|
62 Actually, Emacs clear out all charset maps and unify-map just
|
|
63 before dumping, and their are loaded again on demand the
|
|
64 dumped emacs. But, those maps (char tables) generated while
|
|
65 temacs is running can't be get rid of from the dumped emacs.
|
|
66
|
88836
|
67 * Translation tables for {en,de}code currently aren't supported.
|
88740
|
68
|
89215
|
69 This should be fixed by the changes of 2002-10-14.
|
|
70
|
88740
|
71 * Defining CCL coding systems currently doesn't work.
|
|
72
|
|
73 * iso-2022 charsets get unified on i/o.
|
|
74
|
|
75 * Revisit locale processing: look at treating the language and
|
|
76 charset parts separately. (Language should affect things like
|
|
77 speling and calendar, but that's not a Unicode issue.)
|
|
78
|
|
79 * Handle Unicode combining characters usefully, e.g. diacritics, and
|
88884
|
80 handle more scripts specifically (à la Devanagari). There are
|
88740
|
81 issues with canonicalization.
|
|
82
|
88836
|
83 * Bidi is a separate issue with no support currently.
|
88740
|
84
|
|
85 * DTRT with X keysyms. We should get the right unicode for a given
|
|
86 keysym, not decode raw bytes in some ill-defined coding system.
|
|
87 (fx has some data on keysyms v. unicodes.)
|
|
88
|
|
89 * We need tabular input methods, e.g. for maths symbols. (Not
|
|
90 specific to Unicode.)
|
|
91
|
|
92 * Need multibyte text in menus, e.g. for the above. (Not specific to
|
|
93 Unicode.)
|
88836
|
94
|
|
95 * There's currently no support for Unicode normalization.
|
|
96
|
88884
|
97 * Populate char-width-table correctly for Unicode chanaracters and
|
|
98 worry about what happens when double-width charsets covering
|
|
99 non-CJK characters are unified.
|
|
100
|
|
101 * Emacs 20/21 .elc files are currently not loadable. It may or may
|
|
102 not be possible to do this properly.
|
|
103
|
88891
|
104 With the change on 2002-07-24, elc files generated by Emacs
|
|
105 20.3 and later are correctly loaded (including those
|
|
106 containing multibyte characters and compressed). But, elc
|
|
107 files generated by 20.2 and the primer are still not loadable.
|
|
108 Is it really worth working on it?
|
|
109
|
88884
|
110 * Encoding issues in babyl files/rmail need sorting out.
|
|
111
|
|
112 * Gnus still needs some attention, and we need to get changes
|
|
113 accepted by Gnus maintainers...
|
|
114
|
88836
|
115 * You can grep the code for lots of fixmes.
|