diff options
author | Miles Bader <miles@gnu.org> | 2006-05-02 05:51:52 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2006-05-02 05:51:52 +0000 |
commit | fe682fb2f05fcbd9fcd2d12c2110719adcfcb58a (patch) | |
tree | 2a89d2d9ea2689cfe80a7618885cdd9f449761dd /lisp/term/mac-win.el | |
parent | 7e635d0ed3c42e6e779821f5c0c1c62289f4c1ee (diff) | |
parent | 6cf93749317c2e18f850cd0f47f905895e850bfc (diff) | |
download | emacs-fe682fb2f05fcbd9fcd2d12c2110719adcfcb58a.tar.gz |
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-58
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 239-258)
- Update from CVS
- (Ffield_beginning, find_field): Undo change of 2006-04-23.
- Rcirc patch from Ryan Yeske
- Merge from gnus--rel--5.10
- Clean up lisp/gnus/ChangeLog a bit
* gnus--rel--5.10 (patch 91-98)
- Merge from emacs--devo--0
- Update from CVS
Diffstat (limited to 'lisp/term/mac-win.el')
-rw-r--r-- | lisp/term/mac-win.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/term/mac-win.el b/lisp/term/mac-win.el index c5c5bc5ef03..fa8934aec9e 100644 --- a/lisp/term/mac-win.el +++ b/lisp/term/mac-win.el @@ -1480,7 +1480,7 @@ in `selection-converter-alist', which see." (re-search-forward (mapconcat 'regexp-quote (split-string search-text) "\\|") nil t))))) - (raise-frame)) + (select-frame-set-input-focus (selected-frame))) (defun mac-ae-text (ae) (or (cdr (mac-ae-parameter ae nil "TEXT")) @@ -1911,9 +1911,10 @@ Switch to a buffer editing the last file dropped." (dolist (file-name (nth 2 event)) (dnd-handle-one-url window 'private (concat "file:" file-name)))) - (raise-frame)) + (select-frame-set-input-focus (selected-frame))) (global-set-key [drag-n-drop] 'mac-drag-n-drop) +(global-set-key [M-drag-n-drop] 'mac-drag-n-drop) ;;;; Non-toolkit Scroll bars |