diff options
| author | Jason Rumney | 2004-03-01 22:46:39 +0000 |
|---|---|---|
| committer | Jason Rumney | 2004-03-01 22:46:39 +0000 |
| commit | c1464661891126fccf9e5b6a0e962e05fc4c254f (patch) | |
| tree | d72ba5a069fb60e94a68a860514ccb46e6d20331 /src | |
| parent | 45435c0eaf0cedf8ac79edc839d380d59b0f3bdb (diff) | |
| download | emacs-c1464661891126fccf9e5b6a0e962e05fc4c254f.tar.gz emacs-c1464661891126fccf9e5b6a0e962e05fc4c254f.zip | |
(w32_read_socket): Fix last change to ButtonPress handling.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/w32term.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index d370d953ac6..31cb437e8eb 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2004-03-01 Jason Rumney <jasonr@gnu.org> | ||
| 2 | |||
| 3 | * w32term.c (w32_read_socket): Fix last change to ButtonPress handling. | ||
| 4 | |||
| 1 | 2004-03-01 Juanma Barranquero <lektu@terra.es> | 5 | 2004-03-01 Juanma Barranquero <lektu@terra.es> |
| 2 | 6 | ||
| 3 | * fringe.c (Fdefine_fringe_bitmap): Fix typo in docstring. | 7 | * fringe.c (Fdefine_fringe_bitmap): Fix typo in docstring. |
diff --git a/src/w32term.c b/src/w32term.c index b9077a1e0b6..f69b0860bab 100644 --- a/src/w32term.c +++ b/src/w32term.c | |||
| @@ -4394,7 +4394,7 @@ w32_read_socket (sd, expected, hold_quit) | |||
| 4394 | 4394 | ||
| 4395 | if (tool_bar_p | 4395 | if (tool_bar_p |
| 4396 | || (dpyinfo->w32_focus_frame | 4396 | || (dpyinfo->w32_focus_frame |
| 4397 | && f == dpyinfo->w32_focus_frame)) | 4397 | && f != dpyinfo->w32_focus_frame)) |
| 4398 | inev.kind = NO_EVENT; | 4398 | inev.kind = NO_EVENT; |
| 4399 | } | 4399 | } |
| 4400 | 4400 | ||