* lisp/which-key.el (which-key-dont-use-unicode): Add a custom setter
that re-evaluates a manual list of options use
'which-key-dont-use-unicode' to determine their default value.
https://lists.gnu.org/archive/html/help-gnu-emacs/2024-06/msg00130.html
(cherry picked from commit
768e92b9c0214a2aa1be2afbee48c455583d3110)
"If non-nil, don't use any unicode characters in default setup.
For affected settings, see `which-key-replacement-alist', `which-key-ellipsis'
`which-key-separator'."
+ :set (lambda (sym val)
+ (custom-set-default sym val)
+ (mapc #'custom-reevaluate-setting
+ '(which-key-separator
+ which-key-ellipsis)))
:type 'boolean
:package-version "1.0" :version "30.1")