Fix customization of 'display-fill-column-indicator-character'
* lisp/cus-start.el (display-fill-column-indicator-character): Fix the customization form. (Bug#41145)
This commit is contained in:
parent
d5c184aa3e
commit
c5e5839776
1 changed files with 9 additions and 2 deletions
|
@ -771,9 +771,16 @@ since it could result in memory overflow and make Emacs crash."
|
|||
:safe (lambda (value) (or (booleanp value) (integerp value))))
|
||||
(display-fill-column-indicator-character
|
||||
display-fill-column-indicator
|
||||
character
|
||||
(choice
|
||||
(character :tag "Use U+2502 to indicate fill column"
|
||||
:value ?│)
|
||||
(character :tag "Use | to indicate fill column"
|
||||
:value ?|)
|
||||
(const :tag "If possible, use U+2502 to indicate fill column, otherwise use |"
|
||||
:value nil)
|
||||
character)
|
||||
"27.1"
|
||||
:safe characterp)
|
||||
:safe (lambda (value) (or (characterp value) (booleanp value))))
|
||||
;; xfaces.c
|
||||
(scalable-fonts-allowed display boolean "22.1")
|
||||
;; xfns.c
|
||||
|
|
Loading…
Add table
Reference in a new issue