Function: ebnf-spool-buffer
ebnf-spool-buffer is an autoloaded, interactive and byte-compiled
function defined in ebnf2ps.el.gz.
Signature
(ebnf-spool-buffer)
Documentation
Generate and spool a PostScript syntactic chart image of the buffer.
Like ebnf-print-buffer except that the PostScript image is saved in a
local buffer to be sent to the printer later.
Use the command ebnf-despool to send the spooled images to the printer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/ebnf2ps.el.gz
;;;###autoload
(defun ebnf-spool-buffer ()
"Generate and spool a PostScript syntactic chart image of the buffer.
Like `ebnf-print-buffer' except that the PostScript image is saved in a
local buffer to be sent to the printer later.
Use the command `ebnf-despool' to send the spooled images to the printer."
(interactive)
(ebnf-log-header "(ebnf-spool-buffer)")
(ebnf-spool-region (point-min) (point-max)))