diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-10-26 04:32:09 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-10-26 04:32:09 +0000 |
commit | f37a389e680b3edafa401c38be3650aecd06d2dd (patch) | |
tree | 48ba26928f500447c8105ede6bf3b57312923512 /lisp/faces.el | |
parent | 4d632321c168edf1a079cbf06f18b8ac9c8ba46b (diff) | |
download | emacs-f37a389e680b3edafa401c38be3650aecd06d2dd.tar.gz |
* 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.
Diffstat (limited to 'lisp/faces.el')
-rw-r--r-- | lisp/faces.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/faces.el b/lisp/faces.el index cab7f5b52cc..661cb9db4f0 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -70,7 +70,7 @@ a font height that isn't optimal." ;; 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. |