From: Alan Mackenzie <acm@muc.de>
To: Stefan Monnier <monnier@iro.umontreal.ca>
Cc: bug-cc-mode@gnu.org, 58641@debbugs.gnu.org
Subject: bug#58641: 29.0.50; cc-fonts signals void variable: font-lock-reference-face
Date: Tue, 25 Oct 2022 10:09:12 +0000 [thread overview]
Message-ID: <Y1e1yF2gQR8yqSH6@ACM> (raw)
In-Reply-To: <jwva65rsmv1.fsf@iro.umontreal.ca>
Hello, Stefan.
Sorry it's taken me so long to getting around to answering. The last
few days have been a bit busy.
On Wed, Oct 19, 2022 at 14:13:22 -0400, Stefan Monnier via CC-Mode-help wrote:
> Package: Emacs
> Version: 29.0.50
> If I start
> % emacs -Q --eval '(make-face `font-lock-reference-face)' -l cc-fonts
> I get the error:
> defconst: Symbol’s value as variable is void: font-lock-reference-face
> Something like the patch below seems in order.
GRRRR! Yes, it is in order. A small point, perhaps, but we aim for
perfection in CC Mode. ;-) I'll commit this, after checking that
the same thing doesn't happen anywhere else in cc-fonts.el. Actually,
it does, so I'll correct those other things, too.
> Not sure if the FIXME is a confusion of mine or is a real problem.
The aliasing of missing faces is a mass of confusion, which takes up
more mental energy than it deserves. But yes, it would be better for
f-l-reference-face to be mapped to f-l-constant-face before defaulting
to c-label-face-name. I'll do this, too.
> Stefan
> diff --git a/lisp/progmodes/cc-fonts.el b/lisp/progmodes/cc-fonts.el
> index aa16da70703..d8776d8322a 100644
> --- a/lisp/progmodes/cc-fonts.el
> +++ b/lisp/progmodes/cc-fonts.el
> @@ -146,11 +146,14 @@ c-constant-face-name
> (defconst c-reference-face-name
> (with-no-warnings
> (if (and (c-face-name-p 'font-lock-reference-face)
> + (boundp 'font-lock-reference-face)
> (eq font-lock-reference-face 'font-lock-reference-face))
> ;; This is considered obsolete in Emacs, but it still maps well
> ;; to this use. (Another reason to do this is to get unique
> ;; faces for the test suite.)
> 'font-lock-reference-face
> + ;; FIXME: `font-lock-reference-face' was an alias for
> + ;; `font-lock-constant-face', not `font-lock-label-face'.
> c-label-face-name)))
> ;; This should not mapped to a face that also is used to fontify things
> @@ -586,7 +589,8 @@ c-fontify-recorded-types-and-refs
> (c-lang-const c-opt-cpp-macro-define)
> (c-lang-const c-nonempty-syntactic-ws)
> "\\(" (c-lang-const ; 1 + ncle + nsws
> - c-symbol-key) "\\)"
> + c-symbol-key)
> + "\\)"
> (concat "\\(" ; 2 + ncle + nsws + c-sym-key
> ;; Macro with arguments - a "function".
> "\\((\\)" ; 3 + ncle + nsws + c-sym-key
--
Alan Mackenzie (Nuremberg, Germany).
next prev parent reply other threads:[~2022-10-25 10:09 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-19 18:13 bug#58641: 29.0.50; cc-fonts signals void variable: font-lock-reference-face Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-10-25 10:09 ` Alan Mackenzie [this message]
2022-10-25 12:51 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-10-25 13:43 ` Alan Mackenzie
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=Y1e1yF2gQR8yqSH6@ACM \
--to=acm@muc.de \
--cc=58641@debbugs.gnu.org \
--cc=bug-cc-mode@gnu.org \
--cc=monnier@iro.umontreal.ca \
/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.