From 1025f7696c36af639ec2a2be4a19473fe4115a28 Mon Sep 17 00:00:00 2001 From: Tim Vaughan Date: Wed, 11 Sep 2019 17:37:09 +0200 Subject: [PATCH] Replaced add-to-list with push. Fixes byte compilation error. --- elpher.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elpher.el b/elpher.el index 9af26de..8fbc60e 100644 --- a/elpher.el +++ b/elpher.el @@ -1208,7 +1208,7 @@ If ADDRESS is already bookmarked, update the label only." (let ((link-map nil) (b (next-button (point-min) t))) (while b - (add-to-list 'link-map (cons (button-label b) b)) + (push (cons (button-label b) b) link-map) (setq b (next-button (button-start b)))) link-map)) -- 2.20.1