diff options
| author | Steven Tamm | 2005-01-16 00:39:04 +0000 |
|---|---|---|
| committer | Steven Tamm | 2005-01-16 00:39:04 +0000 |
| commit | 0530c67988156d503943a1a0d88fbe75e0c04cbc (patch) | |
| tree | d6a7ba53fce3cc4e8dfbecac1b2dc46beb20c7a7 /src | |
| parent | 743d0696815e14252284e5b11ba7f40feeb652c9 (diff) | |
| download | emacs-0530c67988156d503943a1a0d88fbe75e0c04cbc.tar.gz emacs-0530c67988156d503943a1a0d88fbe75e0c04cbc.zip | |
Changed name from mac-use-core-graphics to mac-allow-anti-aliasing
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 7 | ||||
| -rw-r--r-- | src/macterm.c | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 6f67d5e49fc..eb87729133d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,9 +1,10 @@ | |||
| 1 | 2005-01-15 Steven Tamm <steventamm@mac.com> | 1 | 2005-01-15 Steven Tamm <steventamm@mac.com> |
| 2 | 2 | ||
| 3 | * macterm.c (Vmac_use_core_graphics): defined | 3 | * macterm.c (Vmac_use_core_graphics): defined for |
| 4 | (syms_of_macterm): Added mac-use-core-graphics | 4 | mac-allow-anti-aliasing |
| 5 | (syms_of_macterm): Added mac-allow-anti-aliasing | ||
| 5 | (mac_draw_string_common): Use core graphics text rendering if | 6 | (mac_draw_string_common): Use core graphics text rendering if |
| 6 | mac-use-core-graphics is enabled. | 7 | mac-allow-anti-aliasing is enabled. |
| 7 | 8 | ||
| 8 | * macfns.c (Fx_file_dialog): Save As dialog includes only the | 9 | * macfns.c (Fx_file_dialog): Save As dialog includes only the |
| 9 | file name in the text box. | 10 | file name in the text box. |
diff --git a/src/macterm.c b/src/macterm.c index 4a1593309ba..11ec9166832 100644 --- a/src/macterm.c +++ b/src/macterm.c | |||
| @@ -9923,7 +9923,7 @@ Toolbox for processing before Emacs sees it. */); | |||
| 9923 | Vmac_pass_control_to_system = Qt; | 9923 | Vmac_pass_control_to_system = Qt; |
| 9924 | #endif | 9924 | #endif |
| 9925 | 9925 | ||
| 9926 | DEFVAR_LISP ("mac-use-core-graphics", &Vmac_use_core_graphics, | 9926 | DEFVAR_LISP ("mac-allow-anti-aliasing", &Vmac_use_core_graphics, |
| 9927 | doc: /* If non-nil, the text will be rendered using Core Graphics text rendering which may anti-alias the text. */); | 9927 | doc: /* If non-nil, the text will be rendered using Core Graphics text rendering which may anti-alias the text. */); |
| 9928 | Vmac_use_core_graphics = Qnil; | 9928 | Vmac_use_core_graphics = Qnil; |
| 9929 | 9929 | ||