;; -*- lexical-binding: t; -*- ;;;###autoload (defface handwriting '((t :family "Jeremy Sans")) "A face with handwritten font") ;;;###autoload (defun handwrite () "Make the buffer look handwritten" (interactive) (buffer-face-set 'handwriting)) (provide 'handwriting)