From 47f0f77d9197d1b22ae0ae0985b17cd97c6471c9 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sat, 4 May 2019 15:55:00 -0400 Subject: [PATCH] Fix #1384 Redundant with show-trailing-whitespace --- core/core-ui.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/core-ui.el b/core/core-ui.el index 6ed258384..118487353 100644 --- a/core/core-ui.el +++ b/core/core-ui.el @@ -147,8 +147,7 @@ read-only or not file-visiting." (if (bound-and-true-p whitespace-newline-mode) (cl-union (if indent-tabs-mode '(indentation) '(tabs tab-mark)) whitespace-style) - `(face ,@(if indent-tabs-mode '(indentation) '(tabs tab-mark)) - trailing))) + `(face ,@(if indent-tabs-mode '(indentation) '(tabs tab-mark))))) (whitespace-mode +1)))