diff options
| author | Andrew Choi | 2002-06-16 23:08:57 +0000 |
|---|---|---|
| committer | Andrew Choi | 2002-06-16 23:08:57 +0000 |
| commit | f00691a3e4e5b7997ee7efe6e745d1158a439b21 (patch) | |
| tree | 036f7ab41500e1da9f67cd9399a8589a78052e1d /lisp | |
| parent | 5fd4d15974c8437440a1b249feab59fb1fea5866 (diff) | |
| download | emacs-f00691a3e4e5b7997ee7efe6e745d1158a439b21.tar.gz emacs-f00691a3e4e5b7997ee7efe6e745d1158a439b21.zip | |
In src/:
2002-06-16 Andrew Choi <akochoi@shaw.ca>
* fontset.c (syms_of_fontset) [MAC_OS]: Set ASCII font of
Vdefault_fontset to Monaco with mac-roman coding.
* mac.c, macfns.c, macmenu.c, macterm.c: Undefine and redefine
init_process before and after inclusion of Carbon/Carbon.h, resp.
* macterm.c (x_new_font): Set font for normal_gc, reverse_gc, and
cursor_gc.
(add_font_name_table_entry): New function.
(init_font_name_table): Use add_font_name_table_entry; add italic,
bold, and bold-italic entries for truetype fonts.
* xfaces.c (init_frame_faces) [MAC_OS]: Call realize_basic_faces
for Mac too.
(try_font_list) [MAC_OS]: If no font matches given registry, try
fonts with any registry matching face_family.
(realize_x_face) [MAC_OS]: Remove old ad-hoc fix to load font
here.
* s/darwin.h: If autoconf detects the Ncurses library, define
LIBS_TERMCAP to -lncurses to use it.
In lisp/:
2002-06-16 Andrew Choi <akochoi@shaw.ca>
* term/mac-win.el (scalable-fonts-allowed): Set to t.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/term/mac-win.el | 6 |
2 files changed, 11 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1f356d4c4e5..236fc1ff021 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2002-06-16 Andrew Choi <akochoi@shaw.ca> | ||
| 2 | |||
| 3 | * term/mac-win.el (scalable-fonts-allowed): Set to t. | ||
| 4 | |||
| 1 | 2002-06-15 Colin Walters <walters@debian.org> | 5 | 2002-06-15 Colin Walters <walters@debian.org> |
| 2 | 6 | ||
| 3 | * pcvs-info.el (global-font-lock-mode, font-lock-auto-fontify): | 7 | * pcvs-info.el (global-font-lock-mode, font-lock-auto-fontify): |
| @@ -294,7 +298,7 @@ | |||
| 294 | * select.el (xselect-convert-to-string): If VALUE is a string, | 298 | * select.el (xselect-convert-to-string): If VALUE is a string, |
| 295 | return a cons of TYPE and the string. | 299 | return a cons of TYPE and the string. |
| 296 | 300 | ||
| 297 | 2002-06-05 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | 301 | 2002-06-05 Pavel Jan,Am(Bk <Pavel@Janik.cz> |
| 298 | 302 | ||
| 299 | * language/cyrillic.el (cyrillic-alternativnyj-decode-table): | 303 | * language/cyrillic.el (cyrillic-alternativnyj-decode-table): |
| 300 | Fix the table to contain correct characters. | 304 | Fix the table to contain correct characters. |
diff --git a/lisp/term/mac-win.el b/lisp/term/mac-win.el index 53f6cde1d79..c4030a86879 100644 --- a/lisp/term/mac-win.el +++ b/lisp/term/mac-win.el | |||
| @@ -225,6 +225,12 @@ ascii:-*-Monaco-*-*-*-*-12-*-*-*-*-*-mac-roman") | |||
| 225 | ;; ange-ftp will not work without it. | 225 | ;; ange-ftp will not work without it. |
| 226 | (setq process-connection-type nil) | 226 | (setq process-connection-type nil) |
| 227 | 227 | ||
| 228 | ;; Assume that fonts are always scalable on the Mac. This sometimes | ||
| 229 | ;; results in characters with jagged edges. However, without it, | ||
| 230 | ;; fonts with both truetype and bitmap representations but no italic | ||
| 231 | ;; or bold bitmap versions will not display these variants correctly. | ||
| 232 | (setq scalable-fonts-allowed t) | ||
| 233 | |||
| 228 | ;; (prefer-coding-system 'mac-roman) | 234 | ;; (prefer-coding-system 'mac-roman) |
| 229 | 235 | ||
| 230 | ;; | 236 | ;; |