diff options
| author | Kenichi Handa | 2008-05-23 12:54:18 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2008-05-23 12:54:18 +0000 |
| commit | 67ef7528415bcbc84ce29c1403b8f1ae74e469a3 (patch) | |
| tree | ed785a2a80c5242e36860b854cb4a3ebefd9688e | |
| parent | 6c652bebc2f0d3d69ac9704649ce013cac5a7a97 (diff) | |
| download | emacs-67ef7528415bcbc84ce29c1403b8f1ae74e469a3.tar.gz emacs-67ef7528415bcbc84ce29c1403b8f1ae74e469a3.zip | |
Don't define the charset `emacs'
here, just put :docstring, :short-name, and :long-name.
| -rw-r--r-- | lisp/ChangeLog | 19 | ||||
| -rw-r--r-- | lisp/international/mule-conf.el | 22 |
2 files changed, 30 insertions, 11 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e39f46f2bc5..8d1b90bcfcb 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,13 @@ | |||
| 1 | 2008-05-23 Kenichi Handa <handa@m17n.org> | ||
| 2 | |||
| 3 | * international/mule-conf.el: Don't define the charset `emacs' | ||
| 4 | here, just put :docstring, :short-name, and :long-name. | ||
| 5 | |||
| 6 | 2008-05-22 Kenichi Handa <handa@m17n.org> | ||
| 7 | |||
| 8 | * international/mule-diag.el (font-show-log): Limit each listing | ||
| 9 | to 20 items. | ||
| 10 | |||
| 1 | 2008-05-23 Nick Roberts <nickrob@snap.net.nz> | 11 | 2008-05-23 Nick Roberts <nickrob@snap.net.nz> |
| 2 | 12 | ||
| 3 | * progmodes/gdb-ui.el (gdb-enable-debug): New function. | 13 | * progmodes/gdb-ui.el (gdb-enable-debug): New function. |
| @@ -17,11 +27,12 @@ | |||
| 17 | * vc-bzr.el (vc-bzr-annotate-time): Reduce memory allocation. | 27 | * vc-bzr.el (vc-bzr-annotate-time): Reduce memory allocation. |
| 18 | (vc-bzr-revision-completion-table): Handle `boundaries' argument. | 28 | (vc-bzr-revision-completion-table): Handle `boundaries' argument. |
| 19 | 29 | ||
| 20 | * minibuffer.el (completion-boundaries): Change calling convention, so | 30 | * minibuffer.el (completion-boundaries): Change calling |
| 21 | `string' has the same semantics as in try-completion and all-completions. | 31 | convention, so `string' has the same semantics as in |
| 32 | try-completion and all-completions. | ||
| 22 | (completion-table-with-context, completion--embedded-envvar-table) | 33 | (completion-table-with-context, completion--embedded-envvar-table) |
| 23 | (completion--file-name-table, completion-pcm--find-all-completions): | 34 | (completion--file-name-table) |
| 24 | Adjust code accordingly. | 35 | (completion-pcm--find-all-completions): Adjust code accordingly. |
| 25 | 36 | ||
| 26 | 2008-05-22 Chong Yidong <cyd@stupidchicken.com> | 37 | 2008-05-22 Chong Yidong <cyd@stupidchicken.com> |
| 27 | 38 | ||
diff --git a/lisp/international/mule-conf.el b/lisp/international/mule-conf.el index 6b87374f2f1..6fe69aa6630 100644 --- a/lisp/international/mule-conf.el +++ b/lisp/international/mule-conf.el | |||
| @@ -68,6 +68,14 @@ | |||
| 68 | ;; :ascii-compatible-p t | 68 | ;; :ascii-compatible-p t |
| 69 | ;; :code-offset 0) | 69 | ;; :code-offset 0) |
| 70 | ;; | 70 | ;; |
| 71 | ;; (define-charset 'emacs | ||
| 72 | ;; "" | ||
| 73 | ;; :dimension 3 | ||
| 74 | ;; :code-space [0 255 0 255 0 63] | ||
| 75 | ;; :ascii-compatible-p t | ||
| 76 | ;; :supplementary-p t | ||
| 77 | ;; :code-offset 0) | ||
| 78 | ;; | ||
| 71 | ;; (define-charset 'eight-bit | 79 | ;; (define-charset 'eight-bit |
| 72 | ;; "" | 80 | ;; "" |
| 73 | ;; :dimension 1 | 81 | ;; :dimension 1 |
| @@ -94,18 +102,18 @@ | |||
| 94 | 'unicode :short-name "Unicode") | 102 | 'unicode :short-name "Unicode") |
| 95 | (put-charset-property | 103 | (put-charset-property |
| 96 | 'unicode :long-name "Unicode (ISO10646)") | 104 | 'unicode :long-name "Unicode (ISO10646)") |
| 105 | (put-charset-property | ||
| 106 | 'emacs :docstring "Full Emacs charset (excluding eight bit chars)") | ||
| 107 | (put-charset-property | ||
| 108 | 'emacs :short-name "Emacs") | ||
| 109 | (put-charset-property | ||
| 110 | 'emacs :long-name "Emacs") | ||
| 111 | |||
| 97 | (put-charset-property 'eight-bit :docstring "Raw bytes 0-255") | 112 | (put-charset-property 'eight-bit :docstring "Raw bytes 0-255") |
| 98 | (put-charset-property 'eight-bit :short-name "Raw bytes") | 113 | (put-charset-property 'eight-bit :short-name "Raw bytes") |
| 99 | 114 | ||
| 100 | (define-charset-alias 'ucs 'unicode) | 115 | (define-charset-alias 'ucs 'unicode) |
| 101 | 116 | ||
| 102 | (define-charset 'emacs | ||
| 103 | "Full Emacs characters" | ||
| 104 | :ascii-compatible-p t | ||
| 105 | :code-space [ 0 255 0 255 0 63 ] | ||
| 106 | :code-offset 0 | ||
| 107 | :supplementary-p t) | ||
| 108 | |||
| 109 | (define-charset 'latin-iso8859-1 | 117 | (define-charset 'latin-iso8859-1 |
| 110 | "Right-Hand Part of ISO/IEC 8859/1 (Latin-1): ISO-IR-100" | 118 | "Right-Hand Part of ISO/IEC 8859/1 (Latin-1): ISO-IR-100" |
| 111 | :short-name "RHP of Latin-1" | 119 | :short-name "RHP of Latin-1" |