Leo wrote:
> I run Emacs in xterm and popup frames are useless. Thus I would like to
> open a gnus link without a new frame. I have the following config:

Does gnus-other-frame in an xterm actually do something? Is there a
frame it can pop up?

In any case, perhaps this kind of a function would be what you need:

(defun my-gnus
  (interactive)
  (if (gnus-alive-p)
      (switch-to-buffer gnus-group-buffer)
    (gnus)))

(Completely untested)

-- Naked




_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to