diff --git a/modules/ui/fci/config.el b/modules/ui/fci/config.el index 5283cb4cf..705001078 100644 --- a/modules/ui/fci/config.el +++ b/modules/ui/fci/config.el @@ -1,7 +1,9 @@ ;;; ui/fci/config.el -*- lexical-binding: t; -*- (defvar +fci-rule-color-function - (lambda () (face-foreground 'line-number)) + (if EMACS26+ + (lambda () (face-foreground 'line-number)) + (lambda () (face-foreground 'font-lock-comment-face))) "Color used to draw the fill-column rule. Accepts a color string or a function that returns a color.