emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] master f148a94 24/67: Fix use of cl-incf


From: Oleh Krehel
Subject: [elpa] master f148a94 24/67: Fix use of cl-incf
Date: Sun, 22 Mar 2015 17:33:56 +0000

branch: master
commit f148a940fd86c6fd24f33a3b18fc5bcf5c5658cf
Author: Xavier Garrido <address@hidden>
Commit: Oleh Krehel <address@hidden>

    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."



reply via email to

[Prev in Thread] Current Thread [Next in Thread]