branch: externals/ivy-posframe
commit 2f1fdbe7bf4fab3388afaa7e52b3b0a7761d9d0a
Author: conao3 <[email protected]>
Commit: conao3 <[email protected]>
use mapc instead of mapcar
---
ivy-posframe.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ivy-posframe.el b/ivy-posframe.el
index 8e75bbe..946cc05 100644
--- a/ivy-posframe.el
+++ b/ivy-posframe.el
@@ -555,10 +555,10 @@ The return value is undefined.
([remap ivy-dispatching-done] . ivy-posframe-dispatching-done))
(let ((advices ivy-posframe-advice-alist))
(if ivy-posframe-mode
- (mapcar (lambda (elm)
+ (mapc (lambda (elm)
(advice-add (car elm) :around (cdr elm)))
advices)
- (mapcar (lambda (elm)
+ (mapc (lambda (elm)
(advice-remove (car elm) (cdr elm)))
advices))))