aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/term/mac-win.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d256882bf27..271a491e791 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12008-03-29 Juanma Barranquero <lekktu@gmail.com>
2
3 * term/mac-win.el (mac-dnd-drop-data): Remove redundant check.
4
12008-03-26 Chong Yidong <cyd@stupidchicken.com> 52008-03-26 Chong Yidong <cyd@stupidchicken.com>
2 6
3 * Version 22.2 released. 7 * Version 22.2 released.
diff --git a/lisp/term/mac-win.el b/lisp/term/mac-win.el
index 3ed2e5440a8..d76af52f15f 100644
--- a/lisp/term/mac-win.el
+++ b/lisp/term/mac-win.el
@@ -2253,7 +2253,7 @@ See also `mac-dnd-known-types'."
2253 (handler (cdr type-info)) 2253 (handler (cdr type-info))
2254 (w (posn-window (event-start event)))) 2254 (w (posn-window (event-start event))))
2255 (when handler 2255 (when handler
2256 (if (and (windowp w) (window-live-p w) 2256 (if (and (window-live-p w)
2257 (not (window-minibuffer-p w)) 2257 (not (window-minibuffer-p w))
2258 (not (window-dedicated-p w))) 2258 (not (window-dedicated-p w)))
2259 ;; If dropping in an ordinary window which we could use, 2259 ;; If dropping in an ordinary window which we could use,