Remove a use of a PUA Unicode character (bug#77328)

* lisp/progmodes/eglot.el (eglot-code-action-indicator): Use
U+1F4A1 ELECTRIC LIGHT BULB instead of a PUA character.
This commit is contained in:
Gerd Möllmann 2025-03-28 14:44:35 +01:00
parent da9a3f558d
commit 638ec3cd66

View file

@ -612,12 +612,12 @@ Note additionally:
:package-version '(Eglot . "1.19"))
(defcustom eglot-code-action-indicator
(cl-loop for c in '(? ?⚡?✓ ?α ??)
(cl-loop for c in '(?💡 ?⚡?✓ ?α ??)
when (char-displayable-p c)
return (make-string 1 c))
"Indicator string for code action suggestions."
:type (let ((basic-choices
(cl-loop for c in '(? ?⚡?✓ ?α ??)
(cl-loop for c in '(?💡 ?⚡?✓ ?α ??)
when (char-displayable-p c)
collect `(const :tag ,(format "Use `%c'" c)
,(make-string 1 c)))))