From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: gnus-summary-catchup turns ticked into unread Date: Mon, 06 Aug 2007 10:22:36 -0400 Message-ID: References: <20070702160929.C21251C8115@galatea.esat.kuleuven.be> Reply-To: rms@gnu.org NNTP-Posting-Host: lo.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: sea.gmane.org 1186410130 9917 80.91.229.12 (6 Aug 2007 14:22:10 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 6 Aug 2007 14:22:10 +0000 (UTC) Cc: emacs-devel@gnu.org To: Katsumi Yamaoka Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Aug 06 16:22:08 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1II3TA-0003vZ-NC for ged-emacs-devel@m.gmane.org; Mon, 06 Aug 2007 16:22:05 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1II3T4-0000QB-Dc for ged-emacs-devel@m.gmane.org; Mon, 06 Aug 2007 10:21:58 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1II3R8-0006Hb-QN for emacs-devel@gnu.org; Mon, 06 Aug 2007 10:19:58 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1II3R5-0006CJ-8r for emacs-devel@gnu.org; Mon, 06 Aug 2007 10:19:58 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1II3R4-0006Bi-Rj for emacs-devel@gnu.org; Mon, 06 Aug 2007 10:19:54 -0400 Original-Received: from fencepost.gnu.org ([140.186.70.10]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1II3R3-0004Zc-Fi for emacs-devel@gnu.org; Mon, 06 Aug 2007 10:19:53 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.60) (envelope-from ) id 1II3Tg-0000zH-8P; Mon, 06 Aug 2007 10:22:36 -0400 In-reply-to: (message from Katsumi Yamaoka on Wed, 11 Jul 2007 13:03:56 +0900) X-Detected-Kernel: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:76088 Archived-At: The function definition for the XEmacs version of pop-to-buffer is as follows. There's no difference between XEmacs 21.4 and 21.5. The optional ON-FRAME is boolean, so there seems no way to keep the compatibility. (defun pop-to-buffer (bufname &optional not-this-window-p on-frame) ... If optional third arg is non-nil, it is the frame to pop to this buffer on. I am sure that few callers pass the argument NORECORD to pop-to-buffer. So I think an incompatible change would be ok, adding the ON-FRAME argument before NORECORD. What do others think?