]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove a use of a PUA Unicode character (bug#77328)
authorGerd Möllmann <gerd.moellmann@gmail.com>
Fri, 28 Mar 2025 13:44:35 +0000 (14:44 +0100)
committerEshel Yaron <me@eshelyaron.com>
Fri, 28 Mar 2025 16:57:20 +0000 (17:57 +0100)
* lisp/progmodes/eglot.el (eglot-code-action-indicator): Use
U+1F4A1 ELECTRIC LIGHT BULB instead of a PUA character.

(cherry picked from commit 638ec3cd66e51f9287dbea8e8c9d037bfa28ad0e)

lisp/progmodes/eglot.el

index f5674a900670a7a3154c1a0418c6453e1c54aca2..928ae1e83e6b5eb0dec550a5b520a0f1e6a23f13 100644 (file)
@@ -610,12 +610,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)))))