diff options
| author | Dave Love | 2002-10-09 22:51:44 +0000 |
|---|---|---|
| committer | Dave Love | 2002-10-09 22:51:44 +0000 |
| commit | 82c83d004ec72ff627cd53731fc3ae3fb3acfaa5 (patch) | |
| tree | 7c7154cfdcdab18de0a9f8d61d5fd4f267f93b57 | |
| parent | d77cab2b6343d3c86c728f85b193fe3eea297826 (diff) | |
| download | emacs-82c83d004ec72ff627cd53731fc3ae3fb3acfaa5.tar.gz emacs-82c83d004ec72ff627cd53731fc3ae3fb3acfaa5.zip | |
*** empty log message ***
| -rw-r--r-- | README.unicode | 22 | ||||
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 |
2 files changed, 13 insertions, 14 deletions
diff --git a/README.unicode b/README.unicode index 1cef32bddca..86f3e33ec8d 100644 --- a/README.unicode +++ b/README.unicode | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | -*-text-*- | 1 | -*-text; coding: latin-1;-*- |
| 2 | 2 | ||
| 3 | Problems, fixmes and other issues in the emacs-unicode branch | 3 | Problems, fixmes and other issues in the emacs-unicode branch |
| 4 | ------------------------------------------------------------- | 4 | ------------------------------------------------------------- |
| @@ -15,12 +15,13 @@ existing support and the extra stuff at | |||
| 15 | (Editing support is mostly orthogonal to the internal representation.) | 15 | (Editing support is mostly orthogonal to the internal representation.) |
| 16 | 16 | ||
| 17 | * SINGLE_BYTE_CHAR_P returns true for Latin-1 characters, which has | 17 | * SINGLE_BYTE_CHAR_P returns true for Latin-1 characters, which has |
| 18 | undesirable effects. | 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-#" | ||
| 19 | 22 | ||
| 20 | * Rationalize character syntax and its relationship to the Unicode | 23 | * Rationalize character syntax and its relationship to the Unicode |
| 21 | database. Specifically, the latin-N.el files aren't consistent for | 24 | database. (Applies mainly to symbol an punctuation syntax.) |
| 22 | common characters (and obviously have redundancies except in | ||
| 23 | unibyte mode). | ||
| 24 | 25 | ||
| 25 | * Fontset handling and customization needs work. We want to relate | 26 | * Fontset handling and customization needs work. We want to relate |
| 26 | fonts to scripts, probably based on the Unicode blocks. The | 27 | fonts to scripts, probably based on the Unicode blocks. The |
| @@ -42,19 +43,15 @@ existing support and the extra stuff at | |||
| 42 | 43 | ||
| 43 | * What to do with the old coding categories stuff? | 44 | * What to do with the old coding categories stuff? |
| 44 | 45 | ||
| 45 | * Syntax for symbols &c in characters.el needs looking at. | ||
| 46 | |||
| 47 | * The preferred-coding-system property of charsets should probably be | 46 | * The preferred-coding-system property of charsets should probably be |
| 48 | junked unless it can be made more useful now. | 47 | junked unless it can be made more useful now. |
| 49 | 48 | ||
| 50 | * find-coding-systems-for-charsets needs re-writing or removing. | ||
| 51 | |||
| 52 | * find-multibyte-characters needs looking at. | 49 | * find-multibyte-characters needs looking at. |
| 53 | 50 | ||
| 54 | * Implement Korean cp949/UHC and any other important missing | 51 | * Implement Korean cp949/UHC, BIG5-HKSCS and any other important missing |
| 55 | charsets. | 52 | charsets. |
| 56 | 53 | ||
| 57 | * Check up on definitions of tcvn and alternativnj. | 54 | * Check up on definition of alternativnj. |
| 58 | 55 | ||
| 59 | * Lazy-load tables for unify-charset somehow? | 56 | * Lazy-load tables for unify-charset somehow? |
| 60 | 57 | ||
| @@ -89,9 +86,6 @@ existing support and the extra stuff at | |||
| 89 | * Need multibyte text in menus, e.g. for the above. (Not specific to | 86 | * Need multibyte text in menus, e.g. for the above. (Not specific to |
| 90 | Unicode.) | 87 | Unicode.) |
| 91 | 88 | ||
| 92 | * Still can't have case pairs which have different byte lengths -- | ||
| 93 | can that be fixed for Turkish, at least? | ||
| 94 | |||
| 95 | * There's currently no support for Unicode normalization. | 89 | * There's currently no support for Unicode normalization. |
| 96 | 90 | ||
| 97 | * Populate char-width-table correctly for Unicode chanaracters and | 91 | * Populate char-width-table correctly for Unicode chanaracters and |
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 0c18300f16c..bd3728ec9d3 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2002-10-09 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * qp.el (quoted-printable-encode-region): Fix non-multibyte search | ||
| 4 | for Emacs 22. | ||
| 5 | |||
| 1 | 2002-10-07 Dave Love <fx@gnu.org> | 6 | 2002-10-07 Dave Love <fx@gnu.org> |
| 2 | 7 | ||
| 3 | * qp.el (quoted-printable-encode-region): Go to start of range | 8 | * qp.el (quoted-printable-encode-region): Go to start of range |