From 2a94f343dafd1d485425ad4f42fd4da393c4bc7a Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Mon, 19 Feb 2018 12:19:48 +0100 Subject: [PATCH] [Timeline] Additionally cluster before skipping short entries MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Thus consecutive short entries of the same category don’t get deleted. --- site-lisp/timeline-tools.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/site-lisp/timeline-tools.el b/site-lisp/timeline-tools.el index 9d78428..5f1aef9 100644 --- a/site-lisp/timeline-tools.el +++ b/site-lisp/timeline-tools.el @@ -27,7 +27,8 @@ :type 'integer) (defcustom timeline-tools-filter-functions - '(timeline-tools-skip-short-entries + '(timeline-tools-cluster-same-category + timeline-tools-skip-short-entries timeline-tools-cluster-same-category) "List of functions to apply when formatting timelines. Filter are applied in the order they are given in this list."