emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/indent-bars ea53a29562 127/431: Fix unwanted extra bars


From: ELPA Syncer
Subject: [elpa] externals/indent-bars ea53a29562 127/431: Fix unwanted extra bars on over-sufficient blank lines
Date: Mon, 16 Sep 2024 12:59:20 -0400 (EDT)

branch: externals/indent-bars
commit ea53a29562bcbe2a1ac7ce879737601d7f2d15ef
Author: JD Smith <93749+jdtsmith@users.noreply.github.com>
Commit: JD Smith <93749+jdtsmith@users.noreply.github.com>

    Fix unwanted extra bars on over-sufficient blank lines
    
    Space was being matched by nonl
---
 indent-bars.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/indent-bars.el b/indent-bars.el
index 9d238431fd..51b0e41765 100644
--- a/indent-bars.el
+++ b/indent-bars.el
@@ -1098,7 +1098,7 @@ Adapted from `highlight-indentation-mode'."
                                           indent-bars-skip-leftmost-column)
                                      `(>= ,(1+ indent-bars-spacing) ?\s)
                                    '(+ (any ?\t ?\s))))
-                               nonl))
+                               (not (any ?\t ?\s ?\n))))
           (1 (indent-bars--display)))))
   (font-lock-add-keywords nil indent-bars--font-lock-keywords t)
   (if indent-bars-display-on-blank-lines



reply via email to

[Prev in Thread] Current Thread [Next in Thread]