Function: ses-default-printer

ses-default-printer is a macro defined in ses.el.gz.

Signature

(ses-default-printer DEF)

Documentation

Load the global default printer from the spreadsheet file and check it for safety. This is a macro to prevent propagate-on-load viruses.

Source Code

;; Defined in /usr/src/emacs/lisp/ses.el.gz
(defmacro ses-default-printer (def)
  "Load the global default printer from the spreadsheet file and check it
for safety.  This is a macro to prevent propagate-on-load viruses."
  (setq ses--default-printer (ses-safe-printer def))
  (ses-printer-record def)
  t)