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

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

[elpa] master c4d33d3 36/54: ivy.el (ivy-format-function-default): Fix b


From: Oleh Krehel
Subject: [elpa] master c4d33d3 36/54: ivy.el (ivy-format-function-default): Fix boundp bug
Date: Tue, 29 Sep 2015 14:10:00 +0000

branch: master
commit c4d33d3c8ccc8255d93e7d36e6082a276bac7c80
Author: Oleh Krehel <address@hidden>
Commit: Oleh Krehel <address@hidden>

    ivy.el (ivy-format-function-default): Fix boundp bug
    
    Fixes #225
---
 ivy.el |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/ivy.el b/ivy.el
index 30a4542..0492807 100644
--- a/ivy.el
+++ b/ivy.el
@@ -1507,7 +1507,7 @@ This string will be inserted into the minibuffer.")
   (if (bound-and-true-p truncate-lines)
       (mapconcat #'identity cands "\n")
     (let ((ww (- (window-width)
-                 (if (and (boundp fringe-mode) (eq fringe-mode 0)) 1 0))))
+                 (if (and (boundp 'fringe-mode) (eq fringe-mode 0)) 1 0))))
       (mapconcat
        (lambda (s)
          (if (> (length s) ww)



reply via email to

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