diff options
| -rw-r--r-- | lisp/international/mule.el | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lisp/international/mule.el b/lisp/international/mule.el index 8b1dbf89762..b6db19d5ebe 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el | |||
| @@ -308,8 +308,7 @@ See also the documentation of `make-char'." | |||
| 308 | Return nil if such a character is not supported. | 308 | Return nil if such a character is not supported. |
| 309 | Currently the only supported coded character set is `ucs' (ISO/IEC | 309 | Currently the only supported coded character set is `ucs' (ISO/IEC |
| 310 | 10646: Universal Multi-Octet Coded Character Set), and the result is | 310 | 10646: Universal Multi-Octet Coded Character Set), and the result is |
| 311 | translated through the char table `utf-8-translation-table-for-decode' | 311 | translated through the char table `utf-8-translation-table-for-decode'. |
| 312 | if the variable `utf-8-fragment-on-decoding' is non-nil. | ||
| 313 | 312 | ||
| 314 | Optional argument RESTRICTION specifies a way to map the pair of CCS | 313 | Optional argument RESTRICTION specifies a way to map the pair of CCS |
| 315 | and CODE-POINT to a character. Currently not supported and just ignored." | 314 | and CODE-POINT to a character. Currently not supported and just ignored." |
| @@ -332,9 +331,7 @@ and CODE-POINT to a character. Currently not supported and just ignored." | |||
| 332 | (setq code-point (- code-point #xe000)) | 331 | (setq code-point (- code-point #xe000)) |
| 333 | (make-char 'mule-unicode-e000-ffff | 332 | (make-char 'mule-unicode-e000-ffff |
| 334 | (+ (/ code-point 96) 32) (+ (% code-point 96) 32)))))) | 333 | (+ (/ code-point 96) 32) (+ (% code-point 96) 32)))))) |
| 335 | (if (and c | 334 | (if (and c (aref utf-8-translation-table-for-decode c)) |
| 336 | utf-8-fragment-on-decoding | ||
| 337 | (aref utf-8-translation-table-for-decode c)) | ||
| 338 | (aref utf-8-translation-table-for-decode c) | 335 | (aref utf-8-translation-table-for-decode c) |
| 339 | c))))) | 336 | c))))) |
| 340 | 337 | ||