diff options
| author | Richard M. Stallman | 1994-07-17 16:50:41 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-07-17 16:50:41 +0000 |
| commit | a6ac02afc3576560cec29672a2d0aa0dd0f74306 (patch) | |
| tree | 7c664b1522b819e0cb5b0e9b0c4c53e7c918a815 /src | |
| parent | f22aa617007edf2fe6aff9b0dfc0601e4bf837aa (diff) | |
| download | emacs-a6ac02afc3576560cec29672a2d0aa0dd0f74306.tar.gz emacs-a6ac02afc3576560cec29672a2d0aa0dd0f74306.zip | |
(Fx_create_frame): Use 140 as default font size.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfns.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xfns.c b/src/xfns.c index b111c120f8a..df0e4ae9949 100644 --- a/src/xfns.c +++ b/src/xfns.c | |||
| @@ -2327,16 +2327,16 @@ be shared by the new frame.") | |||
| 2327 | font = x_new_font (f, XSTRING (font)->data); | 2327 | font = x_new_font (f, XSTRING (font)->data); |
| 2328 | /* Try out a font which we hope has bold and italic variations. */ | 2328 | /* Try out a font which we hope has bold and italic variations. */ |
| 2329 | if (!STRINGP (font)) | 2329 | if (!STRINGP (font)) |
| 2330 | font = x_new_font (f, "-misc-fixed-medium-r-normal-*-*-120-*-*-c-*-iso8859-1"); | 2330 | font = x_new_font (f, "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-1"); |
| 2331 | if (! STRINGP (font)) | 2331 | if (! STRINGP (font)) |
| 2332 | font = x_new_font (f, "-*-*-medium-r-normal-*-*-120-*-*-c-*-iso8859-1"); | 2332 | font = x_new_font (f, "-*-*-medium-r-normal-*-*-140-*-*-c-*-iso8859-1"); |
| 2333 | if (! STRINGP (font)) | 2333 | if (! STRINGP (font)) |
| 2334 | /* This was formerly the first thing tried, but it finds too many fonts | 2334 | /* This was formerly the first thing tried, but it finds too many fonts |
| 2335 | and takes too long. */ | 2335 | and takes too long. */ |
| 2336 | font = x_new_font (f, "-*-*-medium-r-*-*-*-*-*-*-c-*-iso8859-1"); | 2336 | font = x_new_font (f, "-*-*-medium-r-*-*-*-*-*-*-c-*-iso8859-1"); |
| 2337 | /* If those didn't work, look for something which will at least work. */ | 2337 | /* If those didn't work, look for something which will at least work. */ |
| 2338 | if (! STRINGP (font)) | 2338 | if (! STRINGP (font)) |
| 2339 | font = x_new_font (f, "-*-fixed-*-*-*-*-*-120-*-*-c-*-iso8859-1"); | 2339 | font = x_new_font (f, "-*-fixed-*-*-*-*-*-140-*-*-c-*-iso8859-1"); |
| 2340 | UNBLOCK_INPUT; | 2340 | UNBLOCK_INPUT; |
| 2341 | if (! STRINGP (font)) | 2341 | if (! STRINGP (font)) |
| 2342 | font = build_string ("fixed"); | 2342 | font = build_string ("fixed"); |