I am using tex-mode in Aquamacs and would like to temporarily change the font for the current buffer. What is the way to do it? I tried:
(set-face-attribute "American Typewriter" nil :height 150)
which gives the error:
eval: Wrong type argument: symbolp, "American Typewriter"
even though "American Typewriter" is in (font-family-list)
. When I try:
(set-face-attribute "American Typewriter" nil :height 150)
it only affects the font of the minibuffer, not the current buffer I have open.