[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/ivy-posframe ce7505d 171/195: Merge pull request #57 fr
From: |
Feng Shu |
Subject: |
[elpa] externals/ivy-posframe ce7505d 171/195: Merge pull request #57 from conao3/fix-warning |
Date: |
Sat, 3 Oct 2020 07:12:07 -0400 (EDT) |
branch: externals/ivy-posframe
commit ce7505d61cf6e7dd85884d3edf4003d9257d15f7
Merge: 3df0c29 1794866
Author: tumashu <tumashu@163.com>
Commit: GitHub <noreply@github.com>
Merge pull request #57 from conao3/fix-warning
fix warnings; use mapc instead of mapcar
---
ivy-posframe.el | 15 +++++++--------
1 file changed, 7 insertions(+), 8 deletions(-)
diff --git a/ivy-posframe.el b/ivy-posframe.el
index 8e75bbe..47249b7 100644
--- a/ivy-posframe.el
+++ b/ivy-posframe.el
@@ -553,14 +553,13 @@ The return value is undefined.
([remap swiper-avy] . ivy-posframe-swiper-avy)
([remap ivy-read-action] . ivy-posframe-read-action)
([remap ivy-dispatching-done] . ivy-posframe-dispatching-done))
- (let ((advices ivy-posframe-advice-alist))
- (if ivy-posframe-mode
- (mapcar (lambda (elm)
- (advice-add (car elm) :around (cdr elm)))
- advices)
- (mapcar (lambda (elm)
- (advice-remove (car elm) (cdr elm)))
- advices))))
+ (if ivy-posframe-mode
+ (mapc (lambda (elm)
+ (advice-add (car elm) :around (cdr elm)))
+ ivy-posframe-advice-alist)
+ (mapc (lambda (elm)
+ (advice-remove (car elm) (cdr elm)))
+ ivy-posframe-advice-alist)))
;;;###autoload
(defun ivy-posframe-enable ()
- [elpa] externals/ivy-posframe f264470 164/195: use ivy-posframe--defun-advice instead of defun, (continued)
- [elpa] externals/ivy-posframe f264470 164/195: use ivy-posframe--defun-advice instead of defun, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe a489cd8 131/195: use varid function name, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe cc64ed6 115/195: extend display-functions-alist to configure-alist, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe e500f69 188/195: try and fix issues with posframe, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe d539ac2 195/195: version 0.2.0, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe 76456e6 149/195: Merge pull request #46 from tttuuu888/work, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe fd1e40a 113/195: change variable name, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe 2cac20d 178/195: Hide minibuffer when posframe workable, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe 97337e3 109/195: fix docstring, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe 9b084b7 174/195: Fix Minibuffer hiding does not work #62, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe ce7505d 171/195: Merge pull request #57 from conao3/fix-warning,
Feng Shu <=
- [elpa] externals/ivy-posframe e76565a 140/195: use (ivy-posframe-mode 1), Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe 9f6628d 158/195: Add ivy-posframe-size-function #50, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe 2f1fdbe 169/195: use mapc instead of mapcar, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe f4e17ae 127/195: remove unneeded configure alist variable, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe 057d628 182/195: Fix for prompt line duplicated issue. #71, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe 716ce62 105/195: refactoring; using let-environment, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe 8ad4668 180/195: Update README, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe 8abcf52 163/195: define defun-advice function, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe 0082f43 147/195: add maintainer comment of conao3 at header, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe d5e7314 099/195: move ivy-posframe--add-prompt to advice section, Feng Shu, 2020/10/03