From be0d1cac83d14596406571f9cb668031ec5675ac Mon Sep 17 00:00:00 2001 From: Philipp Stephani Date: Sat, 9 May 2020 14:33:05 +0200 Subject: [PATCH] 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. --- lisp/cus-start.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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." :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 -- 2.39.2