Small fix for type of 'display-fill-column-indicator-character'

* lisp/cus-start.el (standard): Don't mark t as safe file-local value
for 'display-fill-column-indicator-character', as that value isn't
allowed.
This commit is contained in:
Philipp Stephani 2020-05-09 14:33:05 +02:00
parent c5e5839776
commit be0d1cac83

View file

@ -780,7 +780,7 @@ since it could result in memory overflow and make Emacs crash."
:value nil)
character)
"27.1"
:safe (lambda (value) (or (characterp value) (booleanp value))))
:safe (lambda (value) (or (characterp value) (null value))))
;; xfaces.c
(scalable-fonts-allowed display boolean "22.1")
;; xfns.c