all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "Kévin Le Gouguec" <kevin.legouguec@gmail.com>
To: 41747@debbugs.gnu.org
Subject: bug#41747: 27.0.91; Add default fontset setup for "Symbols and Pictographs Extended-A"
Date: Sun, 07 Jun 2020 15:43:40 +0200	[thread overview]
Message-ID: <874krnq9df.fsf@gmail.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 348 bytes --]

Hi,

IIUC, "Symbols and Pictographs Extended-A"[1][2] is a new Unicode block
that showed up in version 12.0 and extends the "Supplemental Symbols and
Pictographs" block.

Since we use Symbola for the latter, I figure it wouldn't hurt to also
use this font for the former?  AFAICT Symbola covers the whole block[3].
Here is a patch to that effect:


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-Use-Symbola-to-cover-Symbols-and-Pictographs-Extende.patch --]
[-- Type: text/x-patch, Size: 1408 bytes --]

From 8d072a05797a72f757b212939bc548911cced9d2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?K=C3=A9vin=20Le=20Gouguec?= <kevin.legouguec@gmail.com>
Date: Sun, 7 Jun 2020 13:55:10 +0200
Subject: [PATCH] Use Symbola to cover "Symbols and Pictographs Extended-A"

This Unicode block was added in version 12.0 and extends the
"Supplemental Symbols and Pictographs" block.  Symbola covers all
characters in this block.

* lisp/international/fontset.el (setup-default-fontset): Add "Symbols
and Pictographs Extended-A" to the subgroups covered by Symbola.
---
 lisp/international/fontset.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lisp/international/fontset.el b/lisp/international/fontset.el
index 23abb0d0a9..f3657c151f 100644
--- a/lisp/international/fontset.el
+++ b/lisp/international/fontset.el
@@ -870,7 +870,8 @@ setup-default-fontset
              (#x1F780 . #x1F7FF)	;; Geometric Shapes Extended
              (#x1F800 . #x1F8FF)	;; Supplemental Arrows-C
              (#x1F900 . #x1F9FF)	;; Supplemental Symbols and Pictographs
-             (#x1FA00 . #x1FA6F)))	;; Chess Symbols
+             (#x1FA00 . #x1FA6F)	;; Chess Symbols
+             (#x1FA70 . #x1FAFF)))	;; Symbols and Pictographs Extended-A
     (set-fontset-font "fontset-default" symbol-subgroup
                       '("Symbola" . "iso10646-1") nil 'prepend))
   ;; Box Drawing and Block Elements
-- 
2.26.2


[-- Attachment #3: Type: text/plain, Size: 1831 bytes --]


(Will followup with an updated patch as soon as I get a bug number.)

FWIW, I found out about this block after

- hearing that Unicode 13.0 included new emojis,
- waiting for an updated version of Symbola to be released[4],
- trying to insert some of the new emojis in Emacs,
- noticing that some of them (e.g. 🩴 U+1FA74, 🪗 U+1FA97, 🫕 U+1FAD5)
  are not displayed (C-u C-x = says "display: no font available",
  despite Symbola covering them).
- going straight to fontset.el to understand why Symbola wasn't picked
  automatically.

Of course, users can work around this with:

    (set-fontset-font t '(#x1FA70 . #x1FAFF) "Symbola" nil 'append)

Thank you for your time.


[1] https://www.unicode.org/charts/PDF/Unicode-13.0/U130-1FA70.pdf
[2] https://en.wikipedia.org/wiki/Symbols_and_Pictographs_Extended-A
[3] https://dn-works.com/wp-content/uploads/2020/UFAS-Docs/Symbola.pdf
    p.14
[4] https://dn-works.com/ufas/


In GNU Emacs 28.0.50 (build 32, x86_64-pc-linux-gnu, GTK+ Version 3.24.20, cairo version 1.16.0)
 of 2020-05-30 built on my-little-tumbleweed
Repository revision: 780f674a82a90c4e3e32583059b498bfa57e4a06
Repository branch: master
Windowing system distributor 'The X.Org Foundation', version 11.0.12008000
System Description: openSUSE Tumbleweed

Configured using:
 'configure --with-xwidgets --with-cairo'

Configured features:
XPM JPEG TIFF GIF PNG RSVG CAIRO SOUND GPM DBUS GSETTINGS GLIB NOTIFY
INOTIFY ACL LIBSELINUX GNUTLS LIBXML2 FREETYPE HARFBUZZ M17N_FLT LIBOTF
ZLIB TOOLKIT_SCROLL_BARS GTK3 X11 XDBE XIM MODULES THREADS XWIDGETS JSON
PDUMPER LCMS2 GMP

Important settings:
  value of $LC_CTYPE: en_US.UTF-8
  value of $LC_TIME: en_GB.UTF-8
  value of $LANG: en_US.UTF-8
  value of $XMODIFIERS: @im=local
  locale-coding-system: utf-8-unix

             reply	other threads:[~2020-06-07 13:43 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-06-07 13:43 Kévin Le Gouguec [this message]
2020-06-07 13:47 ` bug#41747: 27.0.91; Add default fontset setup for "Symbols and Pictographs Extended-A" Kévin Le Gouguec
2020-06-07 14:39 ` Eli Zaretskii
2020-06-07 15:22   ` Kévin Le Gouguec
2020-06-08 14:36     ` Eli Zaretskii
2020-06-08 20:59       ` Kévin Le Gouguec
2020-06-09  2:38         ` Richard Stallman
2020-06-09  9:58           ` Kévin Le Gouguec
2020-06-09 14:35           ` Eli Zaretskii
2020-06-10  0:53             ` Richard Stallman
2020-06-10  8:36               ` Kévin Le Gouguec
2020-06-10 14:48                 ` Eli Zaretskii
2020-06-11 20:58                 ` Alan Third
2020-06-11 21:03                   ` Alan Third
2020-06-10 14:38               ` Eli Zaretskii
2020-06-11  3:40                 ` Richard Stallman
2020-06-09 14:19         ` Eli Zaretskii
2020-06-09  2:35       ` Richard Stallman
2020-06-09  9:27         ` Kévin Le Gouguec
2020-06-09 14:41           ` Eli Zaretskii
2020-06-10  0:55           ` Richard Stallman
2020-06-10  8:50             ` Kévin Le Gouguec
2020-06-11  3:36               ` Richard Stallman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=874krnq9df.fsf@gmail.com \
    --to=kevin.legouguec@gmail.com \
    --cc=41747@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.