From: "Ye Wenbin" <wenbinye@163.com>
Subject: Re: Trying to write an emacs lisp function
Date: Mon, 28 Aug 2006 13:27:04 +0800 [thread overview]
Message-ID: <op.tezareabrgymni@ywb-desktop> (raw)
In-Reply-To: <1156735064.663675.84930@m73g2000cwd.googlegroups.com>
Maybe you function encounter some error, because original-frame always
have many windows,
and should use selected-frame-set-input-focus finally.
(defun windows-into-frames ()
"If the current frame has more than one window,
make each window display in its own
seperate frame."
(interactive)
(let ((original-frame (selected-frame))
(original-window (selected-window)))
(dolist (win (window-list))
(when (not (eq win original-window))
(select-window win)
(make-frame)
(select-frame original-frame)))
(select-frame-set-input-focus original-frame)
(select-window original-window)))
On Mon, 28 Aug 2006 11:17:44 +0800, <jkarres@gmail.com> wrote:
>
> (defun windows-into-frames ()
> "If the current frame has more than one window,
> make each window display in its own
> seperate frame."
> (interactive)
> (setq original-frame (selected-frame))
> (while (not (one-window-p t))
> (other-window 1)
> (make-frame)
> (delete-window)
> (select-frame original-frame)))
--
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/
next prev parent reply other threads:[~2006-08-28 5:27 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-08-28 3:17 Trying to write an emacs lisp function jkarres
2006-08-28 5:27 ` Ye Wenbin [this message]
2006-08-28 5:40 ` B. T. Raven
2006-08-28 9:58 ` Ehud Karni
[not found] ` <mailman.5767.1156742845.9609.help-gnu-emacs@gnu.org>
2006-08-28 10:38 ` Pascal Bourguignon
[not found] ` <mailman.5775.1156759119.9609.help-gnu-emacs@gnu.org>
2006-08-28 16:00 ` jkarres
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=op.tezareabrgymni@ywb-desktop \
--to=wenbinye@163.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.