aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJason Rumney2004-03-01 22:46:39 +0000
committerJason Rumney2004-03-01 22:46:39 +0000
commitc1464661891126fccf9e5b6a0e962e05fc4c254f (patch)
treed72ba5a069fb60e94a68a860514ccb46e6d20331 /src
parent45435c0eaf0cedf8ac79edc839d380d59b0f3bdb (diff)
downloademacs-c1464661891126fccf9e5b6a0e962e05fc4c254f.tar.gz
emacs-c1464661891126fccf9e5b6a0e962e05fc4c254f.zip
(w32_read_socket): Fix last change to ButtonPress handling.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/w32term.c2
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 @@
12004-03-01 Jason Rumney <jasonr@gnu.org>
2
3 * w32term.c (w32_read_socket): Fix last change to ButtonPress handling.
4
12004-03-01 Juanma Barranquero <lektu@terra.es> 52004-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