diff --git a/lisp/which-key.el b/lisp/which-key.el index 973616ef116..49c22be216a 100644 --- a/lisp/which-key.el +++ b/lisp/which-key.el @@ -130,9 +130,10 @@ which-key-dont-use-unicode `which-key-separator'." :set (lambda (sym val) (custom-set-default sym val) - (mapc #'custom-reevaluate-setting - '(which-key-separator - which-key-ellipsis))) + (dolist (sym '(which-key-separator + which-key-ellipsis)) + (when (get sym 'standard-value) + (custom-reevaluate-setting sym)))) :initialize #'custom-initialize-changed :type 'boolean :package-version "1.0" :version "30.1")