From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Chong Yidong Newsgroups: gmane.emacs.devel,gmane.emacs.pretest.bugs Subject: Re: [21.1.90]: point put at point-min in *compilation* Date: Mon, 04 Feb 2008 10:40:11 -0500 Message-ID: <87hcgoloh0.fsf@stupidchicken.com> References: <6EE216E1AA959543A555C60FF34FB76702CD2B19@maileube01.misys.global.ad> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1202139713 1719 80.91.229.12 (4 Feb 2008 15:41:53 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 4 Feb 2008 15:41:53 +0000 (UTC) Cc: emacs-pretest-bug@gnu.org To: "Marshall\, Simon" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Feb 04 16:42:15 2008 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 1JM3Rv-0006vR-BE for ged-emacs-devel@m.gmane.org; Mon, 04 Feb 2008 16:41:35 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JM3RT-0006Ly-9h for ged-emacs-devel@m.gmane.org; Mon, 04 Feb 2008 10:41:07 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JM3R1-000684-7T for emacs-devel@gnu.org; Mon, 04 Feb 2008 10:40:39 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JM3Qz-000677-Mt for emacs-devel@gnu.org; Mon, 04 Feb 2008 10:40:38 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JM3Qz-00066v-GO for emacs-devel@gnu.org; Mon, 04 Feb 2008 10:40:37 -0500 Original-Received: from fencepost.gnu.org ([140.186.70.10]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JM3Qz-0003F7-Fi for emacs-devel@gnu.org; Mon, 04 Feb 2008 10:40:37 -0500 Original-Received: from mx10.gnu.org ([199.232.76.166]) by fencepost.gnu.org with esmtp (Exim 4.67) (envelope-from ) id 1JM3Qy-0002Ba-M4 for emacs-pretest-bug@gnu.org; Mon, 04 Feb 2008 10:40:36 -0500 Original-Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1JM3Qv-0003EP-Uv for emacs-pretest-bug@gnu.org; Mon, 04 Feb 2008 10:40:37 -0500 Original-Received: from cyd.mit.edu ([18.115.2.24]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JM3Qv-0003E7-Lz for emacs-pretest-bug@gnu.org; Mon, 04 Feb 2008 10:40:33 -0500 Original-Received: by cyd.mit.edu (Postfix, from userid 1000) id 2D0684E489; Mon, 4 Feb 2008 10:40:11 -0500 (EST) In-Reply-To: <6EE216E1AA959543A555C60FF34FB76702CD2B19@maileube01.misys.global.ad> (Simon Marshall's message of "Mon\, 4 Feb 2008 14\:49\:58 -0000") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1.90 (gnu/linux) X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 2) X-detected-kernel: by monty-python.gnu.org: 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:88167 gmane.emacs.pretest.bugs:20867 Archived-At: "Marshall, Simon" writes: > In 21.1, if you run Compile | Compile... RET or Compile | Recompile in a > *compilation* buffer, point is initially placed at point-max, which > means that point stays at point-max as compilation output is inserted > into the buffer and Emacs scrolls the window to keep the latest output > visible. Very convenient. > > In 21.1.90, point is placed at point-min, so that you have to actively > scroll the window to see compilation output. I really don't like it! I think this is due to the following change: 2007-12-27 Richard Stallman * progmodes/compile.el (compilation-start): Set initial visible point properly even when compilation buffer already current. Which was meant to address this complaint: From: Drew Adams Sent: Monday, December 11, 2006 3:21 PM Previously in Emacs 22, as well as in previous releases, , repeating grep in the *grep* buffer would put you at the top of the buffer. This was true at least as late as a build from 2006-07-19. Now, it puts you at the end of the buffer, so you must do M-< to get back to the beginning. Quite annoying.