mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 10:27:41 +00:00
[USE_MAC_TSM] (mac_handle_text_input_event): Exclude 0x7f from ASCII range.
This commit is contained in:
parent
a11ad595d4
commit
67b5f80912
2 changed files with 6 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2006-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
|
||||
|
||||
* macterm.c [USE_MAC_TSM] (mac_handle_text_input_event): Exclude
|
||||
0x7f from ASCII range.
|
||||
|
||||
2006-06-05 Jason Rumney <jasonr@gnu.org>
|
||||
|
||||
* w32term.c (w32_set_scroll_bar_thumb, x_scroll_bar_create)
|
||||
|
|
|
|||
|
|
@ -9569,7 +9569,7 @@ mac_handle_text_input_event (next_handler, event, data)
|
|||
if (err == noErr && code < 0x80)
|
||||
{
|
||||
/* ASCII character. Process it in XTread_socket. */
|
||||
if (read_socket_inev && code >= 0x20)
|
||||
if (read_socket_inev && code >= 0x20 && code <= 0x7e)
|
||||
{
|
||||
struct frame *f = mac_focus_frame (&one_mac_display_info);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue