diff options
author | Carsten Dominik <dominik@science.uva.nl> | 2006-08-23 10:07:42 +0000 |
---|---|---|
committer | Carsten Dominik <dominik@science.uva.nl> | 2006-08-23 10:07:42 +0000 |
commit | 90bb892d7c65ab2d1fe359ad247be0cabc1031cc (patch) | |
tree | dcfadd4c14f76d21900c005c49690b7b7b70c3cd /lisp | |
parent | c4f7363c1088c7558b0101d2c1b64d7c0e76dc38 (diff) | |
download | emacs-90bb892d7c65ab2d1fe359ad247be0cabc1031cc.tar.gz emacs-90bb892d7c65ab2d1fe359ad247be0cabc1031cc.tar.bz2 emacs-90bb892d7c65ab2d1fe359ad247be0cabc1031cc.zip |
(org-follow-gnus-link): Make sure the dedicated
gnus frame is selected.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/textmodes/org.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/textmodes/org.el b/lisp/textmodes/org.el index 1fcac6855d9..ecbcd86d043 100644 --- a/lisp/textmodes/org.el +++ b/lisp/textmodes/org.el @@ -9467,6 +9467,7 @@ onto the ring." "Follow a Gnus link to GROUP and ARTICLE." (require 'gnus) (funcall (cdr (assq 'gnus org-link-frame-setup))) + (if gnus-other-frame-object (select-frame gnus-other-frame-object)) (if group (gnus-fetch-group group)) (if article (or (gnus-summary-goto-article article nil 'force) |