diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-12-05 19:09:48 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-12-05 19:09:48 +0100 |
commit | fad4049a099486d115fc4d5ef2b7952867b7ca44 (patch) | |
tree | 55f140e996d466cfb69b8438d5b9ea40daf2cf64 /lisp/leim/quail/hangul.el | |
parent | 19307704bd6e73a6740f60459a6b5b58203b6a2f (diff) | |
download | emacs-fad4049a099486d115fc4d5ef2b7952867b7ca44.tar.gz emacs-fad4049a099486d115fc4d5ef2b7952867b7ca44.tar.bz2 emacs-fad4049a099486d115fc4d5ef2b7952867b7ca44.zip |
Remove no-op calls to decode-char with 'ucs' arg
* lisp/gnus/mm-util.el (mm-ucs-to-char):
* lisp/language/hanja-util.el (hangul-to-hanja-char):
* lisp/leim/quail/hangul.el (hangul3-input-method-internal)
(hangul390-input-method-internal):
* lisp/nxml/rng-cmpct.el (rng-c-process-escapes):
* lisp/nxml/xsd-regexp.el (xsdre-compile-single-char)
(xsdre-range-list-to-char-alternative):
* lisp/xml.el (xml-parse-string, xml--entity-replacement-text)
(xml-substitute-special): Remove calls to decode-char where first
argument is 'ucs'; that is now a no-op. Discussed in Bug#52263.
* lisp/nxml/xmltok.el (xmltok-unicode-to-char): Make into obsolete
function alias for 'identity'. Update single caller.
Diffstat (limited to 'lisp/leim/quail/hangul.el')
-rw-r--r-- | lisp/leim/quail/hangul.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/leim/quail/hangul.el b/lisp/leim/quail/hangul.el index c03e86b33c0..d069b5b68e1 100644 --- a/lisp/leim/quail/hangul.el +++ b/lisp/leim/quail/hangul.el @@ -429,7 +429,7 @@ When a Korean input method is off, convert the following hangul character." (hangul3-input-method-jong char)) (t (setq hangul-queue (make-vector 6 0)) - (insert (decode-char 'ucs char)) + (insert char) (move-overlay quail-overlay (point) (point)))))) (defun hangul3-input-method (key) @@ -476,7 +476,7 @@ When a Korean input method is off, convert the following hangul character." (hangul3-input-method-jong char)) (t (setq hangul-queue (make-vector 6 0)) - (insert (decode-char 'ucs char)) + (insert char) (move-overlay quail-overlay (point) (point)))))) (defun hangul390-input-method (key) |