788
|
1 March 20, 2002:
|
771
|
2
|
788
|
3 bugs:
|
771
|
4
|
788
|
5 -- TTY-mode problem. When you start up in TTY mode, XEmacs goes through
|
|
6 the loadup process and appears to be working -- you see the startup
|
|
7 screen pulsing through the different screens, and it appears to be
|
|
8 listening (hitting a key stops the screen motion), but it's frozen --
|
|
9 the screen won't get off the startup, key commands don't cause anything
|
|
10 to happen. STATUS: In progress.
|
|
11
|
|
12 -- Problem loading mule-ucs/reldata/iso8859-6.el or the languages/hebrew.el
|
|
13 file from GNU 21 sources. Probably the escape sequences specify reverse
|
|
14 direction and we can't handle that yet.
|
|
15
|
|
16 -- Memory ballooning in some cases. Not yet understood.
|
|
17
|
|
18 August 29, 2001.
|
771
|
19
|
|
20 This is the most current list of priorities in `ben-mule-21-5'.
|
|
21 Updated often.
|
|
22
|
|
23 high-priority:
|
|
24
|
|
25 [input]
|
|
26
|
|
27 -- support for WM_IME_CHAR. IME input can work under -nuni if we use
|
|
28 WM_IME_CHAR. probably we should always be using this, instead of
|
|
29 snarfing input using WM_COMPOSITION. i'll check this out.
|
|
30 -- Russian C-x problem. see above.
|
|
31
|
|
32 [clean-up]
|
|
33
|
|
34 -- make sure it compiles and runs under non-mule. remember that some
|
|
35 code needs the unicode support, or at least a simple version of it.
|
|
36 -- make sure it compiles and runs under pdump. see below.
|
|
37 -- make sure it compiles and runs under cygwin. see below.
|
|
38 -- clean up mswindows-multibyte, TSTR_TO_C_STRING. expand dfc
|
|
39 optimizations to work across chain.
|
|
40 -- eliminate last vestiges of codepage<->charset conversion and similar stuff.
|
|
41
|
|
42 [other]
|
|
43
|
|
44 -- test the "file-coding is binary only on Unix, no-Mule" stuff.
|
|
45 -- test that things work correctly in -nuni if the system environment
|
|
46 is set to e.g. japanese -- i should get japanese menus, japanese
|
|
47 file names, etc. same for russian, hebrew ...
|
|
48 -- cut and paste. see below.
|
|
49 -- misc issues with handling lang environments. see also August 25,
|
|
50 "finally: working on the C-x in ...".
|
|
51 -- when switching lang env, needs to set keyboard layout.
|
|
52 -- user var to control whether, when moving into text of a
|
|
53 particular language, we set the appropriate keyboard layout. we
|
|
54 would need to have a lisp api for retrieving and setting the
|
|
55 keyboard layout, set text properties to indicate the layout of
|
|
56 text, and have a way of dealing with text with no property on
|
|
57 it. (e.g. saved text has no text properties on it.) basically,
|
|
58 we need to get a keyboard layout from a charset; getting a
|
|
59 language would do. Perhaps we need a table that maps charsets
|
|
60 to language environments.
|
|
61 -- test that the lang env is properly set at startup. test that
|
|
62 switching the lang env properly sets the C locale (call
|
|
63 setlocale(), set LANG, etc.) -- a spawned subprogram should have
|
|
64 the new locale in its environment.
|
|
65 -- look through everything below and see if anything is missed in this
|
|
66 priority list, and if so add it. create a separate file for the
|
|
67 priority list, so it can be updated as appropriate.
|
|
68
|
|
69
|
|
70 mid-priority:
|
|
71
|
|
72 -- clean up the chain coding system. its list should specify decode
|
|
73 order, not encode; i now think this way is more logical. it should
|
|
74 check the endpoints to make sure they make sense. it should also
|
|
75 allow for the specification of "reverse-direction coding systems":
|
|
76 use the specified coding system, but invert the sense of decode and
|
|
77 encode.
|
|
78
|
|
79 -- along with that, places that take an arbitrary coding system and
|
|
80 expect the ends to be anything specific need to check this, and add
|
|
81 the appropriate conversions from byte->char or char->byte.
|
|
82
|
|
83 -- get some support for arabic, thai, vietnamese, japanese jisx 0212:
|
|
84 at least get the unicode information in place and make sure we have
|
|
85 things tied together so that we can display them. worry about r2l
|
|
86 some other time.
|
|
87
|
|
88 -- check the handling of C-c. can XEmacs itself be interrupted with C-c?
|
|
89 is that impossible now that we are a window, not a console, app? at
|
|
90 least we should work something out with `i', so that if it receives a
|
|
91 C-c or C-break, it interrupts XEmacs, too. check out how process groups
|
|
92 work and if they apply only to console apps. also redo the way that
|
|
93 XEmacs sends C-c to other apps. the business of injecting code should
|
|
94 be last resort. we should try C-c first, and if that doesn't work, then
|
|
95 the next time we try to interrupt the same process, use the injection
|
|
96 method.
|