Variable: todo-print-buffer-function

todo-print-buffer-function is a customizable variable defined in todo-mode.el.gz.

Value

ps-print-buffer-with-faces

Documentation

Function called by todo-print-buffer(var)/todo-print-buffer(fun) to print Todo mode buffers.

Called with one argument which can either be:
- a string, naming a file to save the print image to.
- nil, to send the image to the printer.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
;; -----------------------------------------------------------------------------
;;; Printing Todo mode buffers
;; -----------------------------------------------------------------------------

(defcustom todo-print-buffer-function #'ps-print-buffer-with-faces
  "Function called by `todo-print-buffer' to print Todo mode buffers.
Called with one argument which can either be:
- a string, naming a file to save the print image to.
- nil, to send the image to the printer."
  :type 'symbol
  :group 'todo)