Function: iswitchb-summaries-to-end
iswitchb-summaries-to-end is a byte-compiled function defined in
iswitchb.el.gz.
Signature
(iswitchb-summaries-to-end)
Documentation
Move the summaries to the end of the list.
This is an example function which can be hooked on to
iswitchb-make-buflist-hook. Any buffer matching the regexps
Summary or output\*$are put to the end of the list.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/iswitchb.el.gz
(defun iswitchb-summaries-to-end ()
"Move the summaries to the end of the list.
This is an example function which can be hooked on to
`iswitchb-make-buflist-hook'. Any buffer matching the regexps
`Summary' or `output\\*$'are put to the end of the list."
(let ((summaries (delq nil
(mapcar
(lambda (x)
(if (string-match "Summary\\|output\\*$" x)
x))
iswitchb-temp-buflist))))
(iswitchb-to-end summaries)))