aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Stephani2020-05-09 14:33:05 +0200
committerPhilipp Stephani2020-05-09 14:33:05 +0200
commitbe0d1cac83d14596406571f9cb668031ec5675ac (patch)
tree34ea13d7b4351ba7cbfd17cc232e53c19b38287a
parentc5e583977629f55ad438ef0b0c210a9eeb94ae6d (diff)
downloademacs-be0d1cac83d14596406571f9cb668031ec5675ac.tar.gz
emacs-be0d1cac83d14596406571f9cb668031ec5675ac.zip
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.
-rw-r--r--lisp/cus-start.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/cus-start.el b/lisp/cus-start.el
index bd32c7c61d3..6632687da47 100644
--- a/lisp/cus-start.el
+++ b/lisp/cus-start.el
@@ -780,7 +780,7 @@ since it could result in memory overflow and make Emacs crash."
780 :value nil) 780 :value nil)
781 character) 781 character)
782 "27.1" 782 "27.1"
783 :safe (lambda (value) (or (characterp value) (booleanp value)))) 783 :safe (lambda (value) (or (characterp value) (null value))))
784 ;; xfaces.c 784 ;; xfaces.c
785 (scalable-fonts-allowed display boolean "22.1") 785 (scalable-fonts-allowed display boolean "22.1")
786 ;; xfns.c 786 ;; xfns.c