diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-02-26 16:02:23 -0300 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-02-26 16:02:23 -0300 |
commit | 7ef768bce7a943a55774f225022d8883c95a523f (patch) | |
tree | dd24e8e91625a798eb683141b799b4c14964aae6 /sx.el | |
parent | b6fc510cf55b2847301c92acc2cd3c128e8a9dff (diff) | |
parent | 2f398913b77d190f2e0c96ba15296c231ba21e18 (diff) |
Merge pull request #258 from vermiculus/small-improvements
Small improvements
Diffstat (limited to 'sx.el')
-rw-r--r-- | sx.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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))))) |