[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/indent-bars fb986dd71e 253/431: Use #'equal when record
From: |
ELPA Syncer |
Subject: |
[elpa] externals/indent-bars fb986dd71e 253/431: Use #'equal when recording known styles to avoid duplicates |
Date: |
Mon, 16 Sep 2024 12:59:35 -0400 (EDT) |
branch: externals/indent-bars
commit fb986dd71ebdb38bc424aa7f3b0f0fddd49208de
Author: JD Smith <93749+jdtsmith@users.noreply.github.com>
Commit: JD Smith <93749+jdtsmith@users.noreply.github.com>
Use #'equal when recording known styles to avoid duplicates
---
indent-bars.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/indent-bars.el b/indent-bars.el
index a2742f6e04..c7d31c4ddd 100644
--- a/indent-bars.el
+++ b/indent-bars.el
@@ -542,7 +542,7 @@ Additional `format' arguments can be passed as R."
(defun indent-bars--new-style (&optional tag)
"Create and record a new style struct with TAG."
(let ((style (ibs/create tag)))
- (cl-pushnew style indent-bars--styles)
+ (cl-pushnew style indent-bars--styles :test #'equal)
style))
;;;;; Colors
- [elpa] externals/indent-bars 301c97550b 219/431: Correctly initialize 'color alt custom (unspecified), (continued)
- [elpa] externals/indent-bars 301c97550b 219/431: Correctly initialize 'color alt custom (unspecified), ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 315aaaab74 232/431: Correct calls to depth-palette/get-color with STYLE, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars c86c2b670e 213/431: Correctly remove local after-make-frame hook function, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 7b75957588 228/431: Add Nix language support, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 3d5bfe678d 222/431: Set markers only after computing flush ranges, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 9dbfcd8003 259/431: Make default stipple pattern more compact, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 6e864e049e 267/431: Disable auto-theme support for now, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 595b856e12 248/431: De-duplicate seen styles in case a style is re-initialized, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars f7686245cb 264/431: Do set default stipple face attributes: all now via filtered remap, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 4691ab75cc 246/431: Update font-lock expressions to include boundaries are arguments, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars fb986dd71e 253/431: Use #'equal when recording known styles to avoid duplicates,
ELPA Syncer <=
- [elpa] externals/indent-bars ff7a45fe99 247/431: docstring cleanup, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 6d59b8ff3b 272/431: Merge branch 'main' into treesit-scope, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 12204b155b 278/431: Use indent-bars group for everything (with sub-groups), ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 0df7ac5ce5 269/431: Supply correct arguments to handle-blank-lines, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 770d2c7066 251/431: New: text-scale and schedule-remap-cleanup, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars bbc97b6c04 277/431: reset-styles for theme change, all face setup now via styles, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars 748ffeec7f 276/431: New highlight-method, including 'context (new default), ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars ffaaae3d42 265/431: Remove styles on reset so that are recomputed, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars f5f0392ab6 254/431: window-change: remap even if whr val unchanged, use remap-cleanup, ELPA Syncer, 2024/09/16
- [elpa] externals/indent-bars ceb2eb00e9 266/431: ppss-based no-descend-string/list, ELPA Syncer, 2024/09/16