[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/activities 0ce4fefe10 08/50: map-window-state-leafs: om
From: |
ELPA Syncer |
Subject: |
[elpa] externals/activities 0ce4fefe10 08/50: map-window-state-leafs: omit unused pcase branch |
Date: |
Wed, 25 Dec 2024 03:57:17 -0500 (EST) |
branch: externals/activities
commit 0ce4fefe10f14bebcdc99ba63e3d80ce550eb4fd
Author: J.D. Smith <jdtsmith@gmail.com>
Commit: JD Smith <93749+jdtsmith@users.noreply.github.com>
map-window-state-leafs: omit unused pcase branch
---
activities.el | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/activities.el b/activities.el
index 2a608ea318..8191f1a8ba 100644
--- a/activities.el
+++ b/activities.el
@@ -660,9 +660,8 @@ The resulting values are returned as a list."
(pcase state
(`(leaf . ,_attrs)
(push (funcall func state) ret))
- ((pred atom) state)
- (`(,_key . ,(pred atom)) state)
- ((pred list)
+ (`(,_key . ,(pred atom))) ; skip
+ ((pred proper-list-p)
(if-let ((leaf-pos (cl-position 'leaf state)))
(push (funcall func (cl-subseq state leaf-pos)) ret)
(dolist (s state) (map-leafs s func)))))))
- [elpa] externals/activities updated (59caef88e6 -> 31ec5154dd), ELPA Syncer, 2024/12/25
- [elpa] externals/activities 2fc364df30 09/50: map-window-state-leafs: remove additional unused pcase branch, ELPA Syncer, 2024/12/25
- [elpa] externals/activities 16981be880 10/50: annotate: remove extra indentation-preserving space in function call, ELPA Syncer, 2024/12/25
- [elpa] externals/activities 0ce4fefe10 08/50: map-window-state-leafs: omit unused pcase branch,
ELPA Syncer <=
- [elpa] externals/activities d855ed0a45 11/50: annotate: rename vars and simplify age padding, ELPA Syncer, 2024/12/25
- [elpa] externals/activities c2c24484bf 15/50: annotate: make variable names more explicit, ELPA Syncer, 2024/12/25
- [elpa] externals/activities 542f4e4a65 16/50: annotate: compare file truenames and buffers correctly, ELPA Syncer, 2024/12/25
- [elpa] externals/activities 9e12e5882a 13/50: handle missing last state and add `*' for modified state buffer list, ELPA Syncer, 2024/12/25
- [elpa] externals/activities 744fd23282 18/50: annotate: separate active flag (@) from modified flag (*), ELPA Syncer, 2024/12/25
- [elpa] externals/activities 09e469df96 20/50: completing-read: sort completion using new completion-table, ELPA Syncer, 2024/12/25
- [elpa] externals/activities 455e3ebf8f 22/50: Make activities--annotate privately named, ELPA Syncer, 2024/12/25
- [elpa] externals/activities e392e233d3 21/50: annotate: "zero files" is plural, ELPA Syncer, 2024/12/25
- [elpa] externals/activities 8683bb4662 24/50: Factor out buffer-and-files comparison functions, ELPA Syncer, 2024/12/25
- [elpa] externals/activities e774617fb1 25/50: save: retain last timestamp when buffer and files have not changed, ELPA Syncer, 2024/12/25