diff options
| author | Eli Zaretskii | 2020-05-09 12:34:58 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2020-05-09 12:34:58 +0300 |
| commit | c5e583977629f55ad438ef0b0c210a9eeb94ae6d (patch) | |
| tree | 56e468ff4ba9b4fbd1ec7fbf45a6c1469f9d0fc5 | |
| parent | d5c184aa3e2a183144efa5f269e2c70d2681aa0a (diff) | |
| download | emacs-c5e583977629f55ad438ef0b0c210a9eeb94ae6d.tar.gz emacs-c5e583977629f55ad438ef0b0c210a9eeb94ae6d.zip | |
Fix customization of 'display-fill-column-indicator-character'
* lisp/cus-start.el (display-fill-column-indicator-character): Fix
the customization form. (Bug#41145)
| -rw-r--r-- | lisp/cus-start.el | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/lisp/cus-start.el b/lisp/cus-start.el index dff4d9a6060..bd32c7c61d3 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el | |||
| @@ -771,9 +771,16 @@ since it could result in memory overflow and make Emacs crash." | |||
| 771 | :safe (lambda (value) (or (booleanp value) (integerp value)))) | 771 | :safe (lambda (value) (or (booleanp value) (integerp value)))) |
| 772 | (display-fill-column-indicator-character | 772 | (display-fill-column-indicator-character |
| 773 | display-fill-column-indicator | 773 | display-fill-column-indicator |
| 774 | character | 774 | (choice |
| 775 | (character :tag "Use U+2502 to indicate fill column" | ||
| 776 | :value ?│) | ||
| 777 | (character :tag "Use | to indicate fill column" | ||
| 778 | :value ?|) | ||
| 779 | (const :tag "If possible, use U+2502 to indicate fill column, otherwise use |" | ||
| 780 | :value nil) | ||
| 781 | character) | ||
| 775 | "27.1" | 782 | "27.1" |
| 776 | :safe characterp) | 783 | :safe (lambda (value) (or (characterp value) (booleanp value)))) |
| 777 | ;; xfaces.c | 784 | ;; xfaces.c |
| 778 | (scalable-fonts-allowed display boolean "22.1") | 785 | (scalable-fonts-allowed display boolean "22.1") |
| 779 | ;; xfns.c | 786 | ;; xfns.c |