Function: bs-unload-function
bs-unload-function is a byte-compiled function defined in bs.el.gz.
Signature
(bs-unload-function)
Documentation
Unload the Buffer Selection library.
Source Code
;; Defined in /usr/src/emacs/lisp/bs.el.gz
;; ----------------------------------------------------------------------
;; Cleanup
;; ----------------------------------------------------------------------
(defun bs-unload-function ()
"Unload the Buffer Selection library."
(let ((bs-buf (get-buffer "*buffer-selection*")))
(when bs-buf
(with-current-buffer bs-buf
(when (eq major-mode 'bs-mode)
(bs-kill)
(kill-buffer bs-buf)))))
;; continue standard unloading
nil)