From e24531b776e6092d1895a80065a7a0e4a6e1fce1 Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Sun, 16 Jan 2005 19:18:31 +0000 Subject: [PATCH] (syms_of_macterm) : Doc fix. --- src/ChangeLog | 20 ++++++++++++-------- src/macterm.c | 6 ++++-- 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 394d5bd11ef..7f0cb64b2c5 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2005-01-16 Kim F. Storm + + * macterm.c (syms_of_macterm) : Doc fix. + 2005-01-16 Steven Tamm * macterm.c (mac_to_x_fontname): Removed spurious argument. @@ -14,9 +18,9 @@ 2005-01-16 YAMAMOTO Mitsuharu * keyboard.c (READABLE_EVENTS_DO_TIMERS_NOW) - (READABLE_EVENTS_FILTER_EVENTS) - (READABLE_EVENTS_IGNORE_SQUEEZABLES): New flags for readable_events. - get_filtered_input_pending, readable_filtered_events): Removed. + (READABLE_EVENTS_FILTER_EVENTS, READABLE_EVENTS_IGNORE_SQUEEZABLES): + New flags for readable_events. + (get_filtered_input_pending, readable_filtered_events): Removed. (tracking_off): Call readable_events and get_input_pending with flag READABLE_EVENTS_DO_TIMERS_NOW. (readable_events): Move code from old readable_filtered_events here, @@ -26,7 +30,7 @@ READABLE_EVENTS_IGNORE_SQUEEZABLES is not set in flags. (swallow_events): Call get_input_pending with flag READABLE_EVENTS_DO_TIMERS_NOW. - (get_input_pending): Move code from old get_filtered_input_pending + (get_input_pending): Move code from old get_filtered_input_pending here. Replace boolean arguments do_timers_now, filter_events with flags, and pass flags to readable_events. Document new READABLE_EVENTS_* flags. @@ -38,16 +42,16 @@ * dispnew.c (update_window, update_frame_1): Replace calls to detect_input_pending with detect_input_pending_ignore_squeezables - so that redisplay is not paused if the event queue contains only + so that redisplay is not paused if the event queue contains only mouse movements. * lisp.h: Declare detect_input_pending_ignore_squeezables. 2005-01-15 Steven Tamm - * macterm.c (Vmac_use_core_graphics): defined for - mac-allow-anti-aliasing - (syms_of_macterm): Added mac-allow-anti-aliasing + * macterm.c (Vmac_use_core_graphics): Declare variable for + mac-allow-anti-aliasing. + (syms_of_macterm): DEFVAR_LISP and initialize it. (mac_draw_string_common): Use core graphics text rendering if mac-allow-anti-aliasing is enabled. diff --git a/src/macterm.c b/src/macterm.c index 9e454f25ceb..ebebb129bb8 100644 --- a/src/macterm.c +++ b/src/macterm.c @@ -6798,7 +6798,7 @@ XLoadQueryFont (Display *dpy, char *fontname) font->max_bounds.width = max_width; } } - + TextFont (old_fontnum); /* restore previous font number, size and face */ TextSize (old_fontsize); TextFace (old_fontface); @@ -9924,7 +9924,9 @@ Toolbox for processing before Emacs sees it. */); #endif DEFVAR_LISP ("mac-allow-anti-aliasing", &Vmac_use_core_graphics, - doc: /* If non-nil, the text will be rendered using Core Graphics text rendering which may anti-alias the text. */); + doc: /* If non-nil, allow anti-aliasing. +The text will be rendered using Core Graphics text rendering which +may anti-alias the text. */); Vmac_use_core_graphics = Qnil; DEFVAR_INT ("mac-keyboard-text-encoding", &mac_keyboard_text_encoding, -- 2.11.4.GIT