From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eric Hanchrow Newsgroups: gmane.emacs.devel Subject: [PATCH] * window.el (other-window): Fix docstring. Date: Sat, 10 Dec 2011 13:55:21 -0800 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: dough.gmane.org 1323554160 7421 80.91.229.12 (10 Dec 2011 21:56:00 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sat, 10 Dec 2011 21:56:00 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Dec 10 22:55:51 2011 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1RZUtZ-0003TR-DD for ged-emacs-devel@m.gmane.org; Sat, 10 Dec 2011 22:55:49 +0100 Original-Received: from localhost ([::1]:34784 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RZUtY-00029K-Nz for ged-emacs-devel@m.gmane.org; Sat, 10 Dec 2011 16:55:48 -0500 Original-Received: from eggs.gnu.org ([140.186.70.92]:34791) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RZUtW-00029F-03 for emacs-devel@gnu.org; Sat, 10 Dec 2011 16:55:47 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RZUtU-0004Zx-AI for emacs-devel@gnu.org; Sat, 10 Dec 2011 16:55:45 -0500 Original-Received: from mail-bw0-f41.google.com ([209.85.214.41]:53535) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RZUtT-0004Zs-PT for emacs-devel@gnu.org; Sat, 10 Dec 2011 16:55:44 -0500 Original-Received: by bkbzt12 with SMTP id zt12so4868598bkb.0 for ; Sat, 10 Dec 2011 13:55:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:content-type; bh=/wNhlddTJuj6wtwPdKkAmU4qwF+4FmK4EBqybI4QO9M=; b=L7KtM+7oCvkLNce32a5J+TiasbiWWv3aPb/UHIwvpcs5F3wc+AvbG4kp5olqBByV/c F7izqOQceLfR7TSFSC9xFG3kToo85lRbGFTdbyM/uqJrACjH9yrTdxkOYiuxntNl95Yg Di+P0RiWPfHJHcCorXNRvvmJq4Rn5XjwcjghA= Original-Received: by 10.204.131.81 with SMTP id w17mr6881281bks.9.1323554142158; Sat, 10 Dec 2011 13:55:42 -0800 (PST) Original-Received: by 10.204.48.136 with HTTP; Sat, 10 Dec 2011 13:55:21 -0800 (PST) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 209.85.214.41 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:146631 Archived-At: --- lisp/ChangeLog | 4 ++++ lisp/window.el | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 92205d9..8368022 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2011-12-10 Eric Hanchrow + + * window.el (other-window): Fix docstring. + 2011-12-06 Glenn Morris * emacs-lisp/package.el (package-archives): Doc fix re riskiness. diff --git a/lisp/window.el b/lisp/window.el index 112caee..d727e78 100644 --- a/lisp/window.el +++ b/lisp/window.el @@ -2204,9 +2204,9 @@ skip -COUNT windows backwards. COUNT zero means do not skip any window, so select the selected window. In an interactive call, COUNT is the numeric prefix argument. Return nil. -If the `other-window' parameter of WINDOW is a function and -`ignore-window-parameters' is nil, call that function with the -arguments COUNT and ALL-FRAMES. +If the `other-window' parameter of the selected window is a +function and `ignore-window-parameters' is nil, call that +function with the arguments COUNT and ALL-FRAMES. This function does not select a window whose `no-other-window' window parameter is non-nil. -- 1.7.4.1