This fixes an error in 'hi-lock-read-face-name' that was introduced in
6cd47f59326.
* lisp/faces.el (read-face-name): Fix DEFAULT normalization.
everything after the first separator, but if optional argument
MULTIPLE is non-nil, this function returns all of the face names
in your input as a list of face names."
- (let* ((default (when default (symbol-name default)))
+ (let* ((default (mapcar
+ (lambda (d) (if (and d (symbolp d)) (symbol-name d) d))
+ (ensure-list default)))
(faces
(mapcar #'intern
(completing-read-multiple