Skip to content

Commit 638ec3c

Browse files
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.
1 parent da9a3f5 commit 638ec3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lisp/progmodes/eglot.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -612,12 +612,12 @@ Note additionally:
612612
:package-version '(Eglot . "1.19"))
613613

614614
(defcustom eglot-code-action-indicator
615-
(cl-loop for c in '(? ?⚡?✓ ??)
615+
(cl-loop for c in '(?💡 ?⚡?✓ ??)
616616
when (char-displayable-p c)
617617
return (make-string 1 c))
618618
"Indicator string for code action suggestions."
619619
:type (let ((basic-choices
620-
(cl-loop for c in '(? ?⚡?✓ ??)
620+
(cl-loop for c in '(?💡 ?⚡?✓ ??)
621621
when (char-displayable-p c)
622622
collect `(const :tag ,(format "Use `%c'" c)
623623
,(make-string 1 c)))))

0 commit comments

Comments
 (0)