From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Juanma Barranquero" Newsgroups: gmane.emacs.devel Subject: Re: Annoying recentering when scrolling down Date: Fri, 22 Aug 2008 22:11:03 +0200 Message-ID: References: <87skszunyx.fsf@cyd.mit.edu> <87ljyonasy.fsf@cyd.mit.edu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1219435923 3198 80.91.229.12 (22 Aug 2008 20:12:03 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 22 Aug 2008 20:12:03 +0000 (UTC) Cc: "Emacs Dev \[emacs-devel\]" To: "Chong Yidong" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Aug 22 22:12:56 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 1KWd0C-0001Uu-2v for ged-emacs-devel@m.gmane.org; Fri, 22 Aug 2008 22:12:56 +0200 Original-Received: from localhost ([127.0.0.1]:55570 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KWczE-0008E5-I0 for ged-emacs-devel@m.gmane.org; Fri, 22 Aug 2008 16:11:56 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KWcyR-0007t2-Qn for emacs-devel@gnu.org; Fri, 22 Aug 2008 16:11:07 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KWcyQ-0007rl-1A for emacs-devel@gnu.org; Fri, 22 Aug 2008 16:11:07 -0400 Original-Received: from [199.232.76.173] (port=54529 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KWcyP-0007rg-UB for emacs-devel@gnu.org; Fri, 22 Aug 2008 16:11:05 -0400 Original-Received: from nf-out-0910.google.com ([64.233.182.187]:59331) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KWcyP-0007Q8-N2 for emacs-devel@gnu.org; Fri, 22 Aug 2008 16:11:06 -0400 Original-Received: by nf-out-0910.google.com with SMTP id c7so294340nfi.26 for ; Fri, 22 Aug 2008 13:11:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=w9zKkRYfI4/LEnPeWl/95p94vC5cljk15WwVDEz9KC4=; b=wghBKZN+J+q1vJ2L6BVe7RgA9ioMmcuDj/8caVsD4o49RY80sDkUdA85DrSoGkr1gW WYDE/lehgeple/+DFPv77imiiaq1fteM/flTHo8qgjP94AS1A9618yMRkj6yVNMhFAA9 GTGepruBGNYyZeKRk4gCy/HHaDh7NUToz+NHM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=NLhOjxVY8+4DrEKTA0NP4l/wt26sMiLi7JSo/nPSp8dDnNVLlrpIacSSVrUckppObh QSvgnekLZeVGVpgNu2Odr+3UElLBwFKWCWe6GyxDEnOIBZndrkxM1ln9XvCHmh+O8TdA XlIB9AaPsx/VrdSbGm40WmIi2EyGBRxGLbUxA= Original-Received: by 10.210.59.3 with SMTP id h3mr2054330eba.0.1219435864316; Fri, 22 Aug 2008 13:11:04 -0700 (PDT) Original-Received: by 10.210.23.12 with HTTP; Fri, 22 Aug 2008 13:11:03 -0700 (PDT) In-Reply-To: <87ljyonasy.fsf@cyd.mit.edu> Content-Disposition: inline X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 2) 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:102840 Archived-At: On Fri, Aug 22, 2008 at 20:50, Chong Yidong wrote: > Could you check if you have scroll-margin on? (This wasn't mentioned in > your original post)? Because it is at the default value, 0. > Also, is there a way to reproduce this problem? In my setup, it is 100% repeatable. I start Emacs with the following .emacs: ;;;; .emacs starts here (setq scroll-preserve-screen-position 'always scroll-conservatively most-positive-fixnum scroll-step 0) ;;;; .emacs ends here then I visit NEWS with C-h C-n, press and keep it so. At first it scrolls line by line; after a while it starts recentering. Juanma