branch: master commit f148a940fd86c6fd24f33a3b18fc5bcf5c5658cf Author: Xavier Garrido <xavier.garr...@gmail.com> Commit: Oleh Krehel <ohwoeo...@gmail.com>
Fix use of cl-incf * ivy.el (ivy-next-line): Update. Fixes #15 --- ivy.el | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ivy.el b/ivy.el index 2681eb2..b0baea9 100644 --- a/ivy.el +++ b/ivy.el @@ -79,7 +79,7 @@ "Select the next completion candidate." (interactive) (unless (>= ivy--index (1- ivy--length)) - (incf ivy--index))) + (cl-incf ivy--index))) (defun ivy-beginning-of-buffer () "Select the first completion candidate."