The Lambda Lab
/
projects
/
elpher.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bff0725
)
Replaced add-to-list with push.
v2.0.0
author
Tim Vaughan
<tgvaughan@gmail.com>
Wed, 11 Sep 2019 15:37:09 +0000
(17:37 +0200)
committer
Tim Vaughan
<tgvaughan@gmail.com>
Wed, 11 Sep 2019 15:37:09 +0000
(17:37 +0200)
Fixes byte compilation error.
elpher.el
patch
|
blob
|
history
diff --git
a/elpher.el
b/elpher.el
index
9af26de
..
8fbc60e
100644
(file)
--- 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))