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:
parent
c5e5839776
commit
be0d1cac83
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue