Variable: ps-mule-font-info-database-default

ps-mule-font-info-database-default is a customizable variable defined in ps-mule.el.gz.

Value

((iso-8859-1
  (normal nil nil)))

Documentation

The default setting to use when ps-multibyte-buffer is nil.

Source Code

;; Defined in /usr/src/emacs/lisp/ps-mule.el.gz
(defcustom ps-mule-font-info-database-default
  ps-mule-font-info-database-latin
  "The default setting to use when `ps-multibyte-buffer' is nil."
  :type '(alist :key-type symbol :tag "Charset"
		:value-type
		(list (list
		       (choice :tag "Font type"
			       (const normal)
			       (const bold)
			       (const italic)
			       (const bold-italic))
		       (choice :tag "Font source"
			       (const builtin)
			       (const bdf)
			       (const vflib)
			       (const nil))
		       ;; My guess as to what the doc is trying to say...
		       (choice :tag "Font name"
			       (const nil)
			       string
			       (repeat :tag "List" string))
		       (choice :tag "Encoding"
			       (const nil)
			       coding-system
			       function)
		       (choice :tag "Bytes"
			       (const nil)
			       (const 1)
			       (const 2)))))
  :group 'ps-print-font)