Function: handwrite-insert-header

handwrite-insert-header is a byte-compiled function defined in handwrite.el.gz.

Signature

(handwrite-insert-header BUF-NAME)

Source Code

;; Defined in /usr/src/emacs/lisp/play/handwrite.el.gz
;; Internal Functions

;;The header for the PostScript output. The argument is the name of
;;the original buffer
(defun handwrite-insert-header (buf-name)
  (insert "%!PS-Adobe-2.0\n")
  (insert "%%Title: " buf-name "\n")
  (insert "%%CreationDate: " (current-time-string) "\n" )
  (insert "%%Pages: (atend)\n")
  (insert "%%For: "  user-mail-address   "\n")
  (insert "%%EndComments\n"))