Function: ibuffer-remove-alist

ibuffer-remove-alist is a byte-compiled function defined in ibuf-ext.el.gz.

Signature

(ibuffer-remove-alist KEY ALIST)

Documentation

Remove all entries in ALIST that have a key equal to KEY.

Source Code

;; Defined in /usr/src/emacs/lisp/ibuf-ext.el.gz
;;; Utility functions
(defun ibuffer-remove-alist (key alist)
  "Remove all entries in ALIST that have a key equal to KEY."
  (while (ibuffer-awhen (assoc key alist)
           (setq alist (remove it alist)) it))
  alist)