From 3f001ff63c2ed0f4af5046c89fb04cc93c4f4f59 Mon Sep 17 00:00:00 2001 Message-Id: <3f001ff63c2ed0f4af5046c89fb04cc93c4f4f59.1717753970.git.mdw@distorted.org.uk> From: Mark Wooding Date: Thu, 31 Dec 2009 00:05:10 +0000 Subject: [PATCH] el/dot-emacs.el: Twiddle `variable-pitch' face size for Emacs 22. Organization: Straylight/Edgeware From: Mark Wooding Seems like 12pt was too big. Go figure. --- el/dot-emacs.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/el/dot-emacs.el b/el/dot-emacs.el index e9390dd..f1592fd 100644 --- a/el/dot-emacs.el +++ b/el/dot-emacs.el @@ -813,7 +813,7 @@ (if (>= emacs-major-version 23) (mdw-define-face variable-pitch (((type x)) :family "sans" :height 100)) (mdw-define-face variable-pitch - (((type x)) :family "helvetica" :height 120))) + (((type x)) :family "helvetica" :height 90))) (mdw-define-face region (((type tty) (class color)) :background "blue") (((type tty) (class mono)) :inverse-video t) -- [mdw]