# HG changeset patch # User Andrew Choi # Date 1030293640 0 # Node ID 085ca259e580973ff1fbc2dc1c3898fbc0f93f16 # Parent a00524dd3f6b1dc3a4786c8c9806a37938b71ffa 2002-08-25 Andrew Choi * macterm.c (XTread_socket): Remove code to call SendEventToEventTarget for keys with command modifiers when mac_command_key_is_meta is nil. diff -r a00524dd3f6b -r 085ca259e580 src/ChangeLog --- a/src/ChangeLog Sun Aug 25 08:29:51 2002 +0000 +++ b/src/ChangeLog Sun Aug 25 16:40:40 2002 +0000 @@ -1,3 +1,9 @@ +2002-08-25 Andrew Choi + + * macterm.c (XTread_socket): Remove code to call + SendEventToEventTarget for keys with command modifiers when + mac_command_key_is_meta is nil. + 2002-08-24 Andreas Schwab * eval.c (Fdefvar): Fix last change. diff -r a00524dd3f6b -r 085ca259e580 src/macterm.c --- a/src/macterm.c Sun Aug 25 08:29:51 2002 +0000 +++ b/src/macterm.c Sun Aug 25 16:40:40 2002 +0000 @@ -12960,16 +12960,6 @@ bufp->code = KeyTranslate (kchr_ptr, new_keycode, &some_state) & 0xff; } -#if USE_CARBON_EVENTS - else if (er.modifiers & cmdKey && - (NILP (Vmac_command_key_is_meta))) - { - /* If this is a command key (and we are not overriding it), - send back to the operating system */ - SendEventToEventTarget (eventRef, GetEventDispatcherTarget ()); - break; - } -#endif else bufp->code = er.message & charCodeMask; bufp->kind = ASCII_KEYSTROKE_EVENT;