all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Alan Third <alan@idiocy.org>
To: Po Lu <luangruo@yahoo.com>
Cc: emacs-devel@gnu.org
Subject: Re: DPS font backend uses the wrong font
Date: Sun, 17 Oct 2021 18:32:56 +0100	[thread overview]
Message-ID: <YWxeSI22KdG7TJgR@idiocy.org> (raw)
In-Reply-To: <875ytvbxec.fsf@yahoo.com>

On Sun, Oct 17, 2021 at 09:20:43PM +0800, Po Lu wrote:
> 
> As of 2028df78, font backends are required to use s->font instead of
> s->face->font, even in the NS port, because s->face is now set to mouse
> face by redisplay independently of terminal specific code.
> 
> Every font backend except for nsfont already does that, so it would make
> sense to change nsfont to do it correctly as well.  But is there
> something I'm missing here?
> 
> IOW, I'm suggesting to change the following snippet of nsfont_draw:
> 
>   font = (struct nsfont_info *)s->face->font;
>   if (font == NULL)
>     font = (struct nsfont_info *)FRAME_FONT (s->f);
> 
> to
> 
>   font = (struct nsfont_info *)s->font;
>   if (font == NULL)
>     font = (struct nsfont_info *)FRAME_FONT (s->f);

Feel free to do whatever is required in nsfont.m, it's been basically
unmaintained for a decade or so afaict. My changes were simply to fix
crashes and remove macOS code that's no longer used (macOS builds use
macfont.m).

We really need someone to update nsfont to actually support things
like bold and italics and ideally use harfbuzz, but I've really
struggled with it, and I don't think anyone actually uses GNUstep
Emacs.
-- 
Alan Third



      parent reply	other threads:[~2021-10-17 17:32 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <875ytvbxec.fsf.ref@yahoo.com>
2021-10-17 13:20 ` DPS font backend uses the wrong font Po Lu
2021-10-17 13:35   ` Po Lu
2021-10-17 17:35     ` Alan Third
2021-10-18  0:15       ` Po Lu
2021-10-17 17:32   ` Alan Third [this message]

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=YWxeSI22KdG7TJgR@idiocy.org \
    --to=alan@idiocy.org \
    --cc=emacs-devel@gnu.org \
    --cc=luangruo@yahoo.com \
    /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.