(char-db-make-char-spec): Don't add `name' into char-spec of
authorMORIOKA Tomohiko <tomo.git@chise.org>
Fri, 17 May 2024 09:34:40 +0000 (18:34 +0900)
committerMORIOKA Tomohiko <tomo.git@chise.org>
Fri, 17 May 2024 09:38:05 +0000 (18:38 +0900)
Variation-Selectors of IVS.

lisp/utf-2000/char-db-util.el

index 87d11f6..eb5b318 100644 (file)
           (cond ((and (setq ret (encode-char char '=ucs 'defined-only))
                       (not (and (<= #xE000 ret)(<= ret #xF8FF))))
                  (setq char-spec (list (cons '=ucs ret)))
-                 (cond ((setq ret (get-char-attribute char 'name))
+                 (cond ((and (not (and (<= #xE0100 ret)(<= ret #xE01EF)))
+                             (setq ret (get-char-attribute char 'name)))
                         (setq char-spec (cons (cons 'name ret) char-spec))
                         )
                        ((setq ret (get-char-attribute char 'name*))