unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Kevin Rodgers <ihs_4664@yahoo.com>
Subject: Re: other-window-or-frame
Date: Wed, 01 Feb 2006 12:13:34 -0700	[thread overview]
Message-ID: <drr190$hum$1@sea.gmane.org> (raw)
In-Reply-To: <dpjjkl$b3u$1@sea.gmane.org>

Kevin Rodgers wrote:
> Drew Adams wrote:
>> If a frame is `one-window-p', command `other-window' silently does 
>> nothing.
>> It might be better to let it do `other-frame' in that case. The optional
>> second arg to `other-window' is not accessible interactively anyway, 
>> so what
>> about this:
>>
>> 1. Bind a new command to `C-x o', to replace `other-window'. It would 
>> do the
>> same thing except when `one-window-p' - in that case, it would do
>> `other-frame'.
>>
>> 2. Keep function `other-window' as is (with its second arg), for Lisp.
>>
>> IOW (but with a better doc string):
>>
>>  (defun other-window-or-frame (arg)
>>    "`other-frame', if `one-window-p'; otherwise, `other-window'."
>>    (interactive "p")
>>    (if (one-window-p) (other-frame arg) (other-window arg)))
>>
>>  (define-key ctl-x-map "o" 'other-window-or-frame)
> 
> Actually, now that you mention it, I've just added this to my .emacs:
> 
> (defadvice other-window (before one-window-p activate)
>   "If there are no other windows, signal an error."
>   (when (one-window-p)
>     (error "No other windows")))
> 
> (defadvice other-frame (before one-frame-p activate)
>   "If there are no other frames, signal an error."
>   (when (= (length (frame-list)) 1)
>     (error "No other frames")))

Just to follow up: Experience proved that to be completely unsatisfactory
since the advice affects all calls to those functions.  This is better:

(defadvice other-window (before one-window-p activate)
   "When called interactively, signal an error if there are no other 
windows."
   (when (and (interactive-p) (one-window-p))
     (error "No other windows")))

(defadvice other-frame (before one-frame-p activate)
   "When called interactively, signal an error if there are no other 
frames."
   (when (and (interactive-p) (= (length (frame-list)) 1))
     (error "No other frames")))

> (setq debug-ignored-errors
>       (cons "\\`No other \\(window\\|frame\\)s\\'" debug-ignored-errors))

-- 
Kevin Rodgers

  reply	other threads:[~2006-02-01 19:13 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-01-05  4:28 other-window-or-frame Drew Adams
2006-01-05 17:05 ` other-window-or-frame Kevin Rodgers
2006-02-01 19:13   ` Kevin Rodgers [this message]
2006-01-05 23:11 ` other-window-or-frame Richard M. Stallman

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

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='drr190$hum$1@sea.gmane.org' \
    --to=ihs_4664@yahoo.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 public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).