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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user