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))))
|
:safe (lambda (value) (or (booleanp value) (integerp value))))
|
||||||
(display-fill-column-indicator-character
|
(display-fill-column-indicator-character
|
||||||
display-fill-column-indicator
|
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"
|
"27.1"
|
||||||
:safe characterp)
|
:safe (lambda (value) (or (characterp value) (booleanp value))))
|
||||||
;; xfaces.c
|
;; xfaces.c
|
||||||
(scalable-fonts-allowed display boolean "22.1")
|
(scalable-fonts-allowed display boolean "22.1")
|
||||||
;; xfns.c
|
;; xfns.c
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue