aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/faces.el2
-rw-r--r--lisp/textmodes/tex-mode.el2
3 files changed, 9 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9ca30dcc7a5..8abb20b481b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,10 @@
12008-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * faces.el (face-font-family-alternatives): Add "CMU Typewriter Text"
4 to the courier family.
5 * textmodes/tex-mode.el (tex-verbatim): Don't use "monospace" which is
6 usually not serif'd and hence rather unlike verbatim's printed output.
7
12008-10-25 Chong Yidong <cyd@stupidchicken.com> 82008-10-25 Chong Yidong <cyd@stupidchicken.com>
2 9
3 * vc-cvs.el (vc-cvs-status-extra-headers): Use full directory name 10 * vc-cvs.el (vc-cvs-status-extra-headers): Use full directory name
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."
70;; which are generally available. 70;; which are generally available.
71(defcustom face-font-family-alternatives 71(defcustom face-font-family-alternatives
72 '(("Monospace" "courier" "fixed") 72 '(("Monospace" "courier" "fixed")
73 ("courier" "fixed") 73 ("courier" "CMU Typewriter Text" "fixed")
74 ("Sans Serif" "helv" "helvetica" "arial" "fixed") 74 ("Sans Serif" "helv" "helvetica" "arial" "fixed")
75 ("helv" "helvetica" "arial" "fixed")) 75 ("helv" "helvetica" "arial" "fixed"))
76 "*Alist of alternative font family names. 76 "*Alist of alternative font family names.
diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el
index 6b516ca6e90..7515e864fa5 100644
--- a/lisp/textmodes/tex-mode.el
+++ b/lisp/textmodes/tex-mode.el
@@ -725,7 +725,7 @@ Not smaller than the value set by `tex-suscript-height-minimum'."
725 725
726(defface tex-verbatim 726(defface tex-verbatim
727 ;; '((t :inherit font-lock-string-face)) 727 ;; '((t :inherit font-lock-string-face))
728 '((t :family "monospace")) 728 '((t :family "courier"))
729 "Face used to highlight TeX verbatim environments." 729 "Face used to highlight TeX verbatim environments."
730 :group 'tex) 730 :group 'tex)
731;; backward-compatibility alias 731;; backward-compatibility alias