]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve conversion between half-width and full-width characters
authorEli Zaretskii <eliz@gnu.org>
Sat, 15 Mar 2025 11:58:44 +0000 (13:58 +0200)
committerEshel Yaron <me@eshelyaron.com>
Sat, 15 Mar 2025 17:15:52 +0000 (18:15 +0100)
* lisp/textmodes/text-mode.el (text-mode--get-fullwidth-table):
Add conversion of SPC to IDEOGRAPHIC SPACE.  (Bug#71822)

(cherry picked from commit ea49eb4752a0632d8d0dfd4215821ab21bbd5a99)

lisp/textmodes/text-mode.el

index 3b27efbcf871624a1a946d96591082ea417c7f78..2d9bb9fb78460cfc4185d025478ef8d709027b09 100644 (file)
@@ -286,6 +286,9 @@ The argument NLINES says how many lines to center."
           (aset tbl ch (+ ch #xFEE0))
           (aset rev-tbl (+ ch #xFEE0) ch)
           (setq ch (1+ ch)))
+        ;; SPC -> U+3000 IDEOGRAPHIC SPACE
+        (aset tbl ?\  #x3000)
+        (aset rev-tbl #x3000 ?\ )
         (set-char-table-extra-slot tbl 0 rev-tbl)
         (set-char-table-extra-slot tbl 1 1)
         (set-char-table-extra-slot rev-tbl 1 1)