Function: pr-kill-help
pr-kill-help is an interactive and byte-compiled function defined in
printing.el.gz.
Signature
(pr-kill-help &rest IGNORE)
Documentation
Kill all printing help buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/printing.el.gz
(defun pr-kill-help (&rest _ignore)
"Kill all printing help buffer."
(interactive)
(let ((help '("*Printing Interface Help*" "*Printing Help*"
"*LPR Setup*" "*PR Setup*" "*PS Setup*")))
(while help
(let ((buffer (get-buffer (car help))))
(setq help (cdr help))
(when buffer
(delete-windows-on buffer)
(kill-buffer buffer)))))
(recenter (- (window-height) 2)))