emacs-diffs
[Top][All Lists]
Advanced

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

master 9c0ac88: ibuf-ext.el: Fix previous change


From: Juanma Barranquero
Subject: master 9c0ac88: ibuf-ext.el: Fix previous change
Date: Sun, 1 Dec 2019 19:38:50 -0500 (EST)

branch: master
commit 9c0ac88199accb4133d9fbf36d3c4adc3705b22f
Author: Juanma Barranquero <address@hidden>
Commit: Juanma Barranquero <address@hidden>

    ibuf-ext.el: Fix previous change
    
    * lisp/ibuf-ext.el (ibuffer-generate-filter-groups): Use
    `cl-destructuring-bind' instead of `cl-multiple-value-bind', as we
    don't want to assume how multiple-values are implemented, and we
    know a list is being returned anyway.  Suggested by Stefan Monnier.
---
 lisp/ibuf-ext.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/ibuf-ext.el b/lisp/ibuf-ext.el
index 375090e..12930fc 100644
--- a/lisp/ibuf-ext.el
+++ b/lisp/ibuf-ext.el
@@ -760,7 +760,7 @@ specification, with the same structure as an element of the 
list
          (i 0))
       (dolist (filtergroup filter-group-alist)
        (let ((filterset (cdr filtergroup)))
-         (cl-multiple-value-bind (hip-crowd lamers)
+         (cl-destructuring-bind (hip-crowd lamers)
              (ibuffer-split-list (lambda (bufmark)
                                    (ibuffer-included-in-filters-p (car bufmark)
                                                                   filterset))



reply via email to

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