# HG changeset patch # User Stefan Monnier # Date 1224995529 0 # Node ID b7eb74a4d86b3d93b3961604569ff0735add799f # Parent f0ad9e3cb1a453fca70b676fb9b312b6eb20b69a * faces.el (face-font-family-alternatives): Add "CMU Typewriter Text" to the courier family. * textmodes/tex-mode.el (tex-verbatim): Don't use "monospace" which is usually not serif'd and hence rather unlike verbatim's printed output. diff -r f0ad9e3cb1a4 -r b7eb74a4d86b lisp/ChangeLog --- a/lisp/ChangeLog Sun Oct 26 04:23:08 2008 +0000 +++ b/lisp/ChangeLog Sun Oct 26 04:32:09 2008 +0000 @@ -1,3 +1,10 @@ +2008-10-26 Stefan Monnier + + * faces.el (face-font-family-alternatives): Add "CMU Typewriter Text" + to the courier family. + * textmodes/tex-mode.el (tex-verbatim): Don't use "monospace" which is + usually not serif'd and hence rather unlike verbatim's printed output. + 2008-10-25 Chong Yidong * vc-cvs.el (vc-cvs-status-extra-headers): Use full directory name diff -r f0ad9e3cb1a4 -r b7eb74a4d86b lisp/faces.el --- a/lisp/faces.el Sun Oct 26 04:23:08 2008 +0000 +++ b/lisp/faces.el Sun Oct 26 04:32:09 2008 +0000 @@ -70,7 +70,7 @@ ;; which are generally available. (defcustom face-font-family-alternatives '(("Monospace" "courier" "fixed") - ("courier" "fixed") + ("courier" "CMU Typewriter Text" "fixed") ("Sans Serif" "helv" "helvetica" "arial" "fixed") ("helv" "helvetica" "arial" "fixed")) "*Alist of alternative font family names. diff -r f0ad9e3cb1a4 -r b7eb74a4d86b lisp/textmodes/tex-mode.el --- a/lisp/textmodes/tex-mode.el Sun Oct 26 04:23:08 2008 +0000 +++ b/lisp/textmodes/tex-mode.el Sun Oct 26 04:32:09 2008 +0000 @@ -725,7 +725,7 @@ (defface tex-verbatim ;; '((t :inherit font-lock-string-face)) - '((t :family "monospace")) + '((t :family "courier")) "Face used to highlight TeX verbatim environments." :group 'tex) ;; backward-compatibility alias