aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2010-01-29 14:02:02 -0500
committerChong Yidong2010-01-29 14:02:02 -0500
commitc024ac081d2f128ab65b325a6db8bdc12dc081db (patch)
treec6a2fb836da373d1dff272e903dc80d50562bedf
parente5c70c411776fb6e8cc29bc155d1f1584933268b (diff)
downloademacs-c024ac081d2f128ab65b325a6db8bdc12dc081db.tar.gz
emacs-c024ac081d2f128ab65b325a6db8bdc12dc081db.zip
Change default XFT font to 10pt, and default frame height to 35 rows (Bug#3643).
* frame.c (DEFAULT_ROWS): Change default to 35. * xfns.c (x_default_font_parameter): Change default XFT font to monospace-10 (Bug#3643).
-rw-r--r--src/ChangeLog7
-rw-r--r--src/frame.c2
-rw-r--r--src/xfns.c2
3 files changed, 9 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index cdc72322684..6aa252fcf92 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,10 @@
12010-01-29 Chong Yidong <cyd@stupidchicken.com>
2
3 * frame.c (DEFAULT_ROWS): Change default to 35.
4
5 * xfns.c (x_default_font_parameter): Change default XFT font to
6 monospace-10 (Bug#3643).
7
12010-01-29 Eli Zaretskii <eliz@gnu.org> 82010-01-29 Eli Zaretskii <eliz@gnu.org>
2 9
3 * w32inevt.c (key_event): Remove unnecessary comparison of 10 * w32inevt.c (key_event): Remove unnecessary comparison of
diff --git a/src/frame.c b/src/frame.c
index 631cc6b06b3..f05f9f751da 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -4191,7 +4191,7 @@ On Nextstep, this just calls `ns-parse-geometry'. */)
4191 4191
4192 This function does not make the coordinates positive. */ 4192 This function does not make the coordinates positive. */
4193 4193
4194#define DEFAULT_ROWS 40 4194#define DEFAULT_ROWS 35
4195#define DEFAULT_COLS 80 4195#define DEFAULT_COLS 80
4196 4196
4197int 4197int
diff --git a/src/xfns.c b/src/xfns.c
index 0ebce8d1e24..96fb090e327 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -3089,7 +3089,7 @@ x_default_font_parameter (f, parms)
3089 = { 3089 = {
3090#ifdef HAVE_XFT 3090#ifdef HAVE_XFT
3091 /* This will find the normal Xft font. */ 3091 /* This will find the normal Xft font. */
3092 "monospace-12", 3092 "monospace-10",
3093#endif 3093#endif
3094 "-adobe-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1", 3094 "-adobe-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1",
3095 "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-1", 3095 "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-1",