Variable: enriched-initial-annotation

enriched-initial-annotation is a variable defined in enriched.el.gz.

Value

#[0 "\301\302\"\207"
    [fill-column format
		 "Content-Type: text/enriched\nText-Width: %d\n\n"]
    3]

Documentation

What to insert at the start of a text/enriched file.

If this is a string, it is inserted. If it is a list, it should be a lambda expression, which is evaluated to get the string to insert.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/enriched.el.gz
;;;
;;; Variables controlling the file format
;;;   (bidirectional)

(defconst enriched-initial-annotation
  (lambda ()
    (format "Content-Type: text/enriched\nText-Width: %d\n\n"
	    fill-column))
  "What to insert at the start of a text/enriched file.
If this is a string, it is inserted.  If it is a list, it should be a lambda
expression, which is evaluated to get the string to insert.")