From 8ed594f003780bcbdd9b7852cb5231d6f116ec6a Mon Sep 17 00:00:00 2001 From: jao Date: Fri, 10 Jan 2025 21:24:00 +0000 Subject: dirmon: really report deltas --- lib/eos/jao-dirmon.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/eos/jao-dirmon.el b/lib/eos/jao-dirmon.el index 960c54e..117da85 100644 --- a/lib/eos/jao-dirmon.el +++ b/lib/eos/jao-dirmon.el @@ -71,7 +71,7 @@ (dolist (c current) (let ((d (- (cdr c) (alist-get (car c) old 0 nil #'string=)))) (when (> (abs d) jao-dirmon-threshold) - (push d high)))) + (push (cons (car c) d) high)))) (setq jao-dirmon-last-delta high) (jao-dirmon--show-deltas old current jao-dirmon-last-delta) jao-dirmon-last-delta)) -- cgit v1.2.3