aboutsummaryrefslogtreecommitdiff
path: root/sx.el
diff options
context:
space:
mode:
authorArtur Malabarba <bruce.connor.am@gmail.com>2015-02-26 16:02:23 -0300
committerArtur Malabarba <bruce.connor.am@gmail.com>2015-02-26 16:02:23 -0300
commit7ef768bce7a943a55774f225022d8883c95a523f (patch)
treedd24e8e91625a798eb683141b799b4c14964aae6 /sx.el
parentb6fc510cf55b2847301c92acc2cd3c128e8a9dff (diff)
parent2f398913b77d190f2e0c96ba15296c231ba21e18 (diff)
Merge pull request #258 from vermiculus/small-improvements
Small improvements
Diffstat (limited to 'sx.el')
-rw-r--r--sx.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/sx.el b/sx.el
index ee7f0a6..ccad1b0 100644
--- a/sx.el
+++ b/sx.el
@@ -209,7 +209,7 @@ is intentionally skipped."
(while (and ;; We're not at the end.
(cdr-safe tail)
;; We're not at the right place.
- (,(or predicate #'<) x (cadr tail)))
+ (funcall (or ,predicate #'<) x (cadr tail)))
(setq tail (cdr tail)))
(setcdr tail (cons x (cdr tail)))))