diff options
| author | Andrew Choi | 2002-06-17 01:45:48 +0000 |
|---|---|---|
| committer | Andrew Choi | 2002-06-17 01:45:48 +0000 |
| commit | b6cce0b720b44fcf8a8aa6e20ff1a1be2c605b94 (patch) | |
| tree | 41ecfe25d1595d7fa4c901ca591adb749a89039e /src/macterm.c | |
| parent | e04464bb32af4bde001ff45a6aa1f43d69192e08 (diff) | |
| download | emacs-b6cce0b720b44fcf8a8aa6e20ff1a1be2c605b94.tar.gz emacs-b6cce0b720b44fcf8a8aa6e20ff1a1be2c605b94.zip | |
2002-06-16 Andrew Choi <akochoi@shaw.ca>
* macterm.c (XTread_socket): Call FrontNonFloatingWindow instead
of FrontWindow for cases keyDown and autoKey.
Diffstat (limited to 'src/macterm.c')
| -rw-r--r-- | src/macterm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/macterm.c b/src/macterm.c index d98f24bc4fc..f3258cbb7fe 100644 --- a/src/macterm.c +++ b/src/macterm.c | |||
| @@ -12624,7 +12624,8 @@ XTread_socket (int sd, struct input_event *bufp, int numchars, int expected) | |||
| 12624 | bufp->modifiers = the_modifiers; | 12624 | bufp->modifiers = the_modifiers; |
| 12625 | 12625 | ||
| 12626 | { | 12626 | { |
| 12627 | mac_output *mwp = (mac_output *) GetWRefCon (FrontWindow ()); | 12627 | mac_output *mwp |
| 12628 | = (mac_output *) GetWRefCon (FrontNonFloatingWindow ()); | ||
| 12628 | XSETFRAME (bufp->frame_or_window, mwp->mFP); | 12629 | XSETFRAME (bufp->frame_or_window, mwp->mFP); |
| 12629 | } | 12630 | } |
| 12630 | 12631 | ||