From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.bugs Subject: bug#10105: 24.0.91; Possible bug in `scroll-conservatively' Date: Mon, 28 Nov 2011 07:01:17 -0500 Message-ID: References: <83mxbk8mhn.fsf@gnu.org> <83d3cg8aww.fsf@gnu.org> Reply-To: Eli Zaretskii NNTP-Posting-Host: lo.gmane.org X-Trace: dough.gmane.org 1322481742 11202 80.91.229.12 (28 Nov 2011 12:02:22 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 28 Nov 2011 12:02:22 +0000 (UTC) Cc: 10105@debbugs.gnu.org To: Dani Moncayo Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Mon Nov 28 13:02:17 2011 Return-path: Envelope-to: geb-bug-gnu-emacs@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 1RUzub-0005Wo-Kd for geb-bug-gnu-emacs@m.gmane.org; Mon, 28 Nov 2011 13:02:17 +0100 Original-Received: from localhost ([::1]:49355 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RUzub-0005f8-3y for geb-bug-gnu-emacs@m.gmane.org; Mon, 28 Nov 2011 07:02:17 -0500 Original-Received: from eggs.gnu.org ([140.186.70.92]:40823) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RUzuY-0005f2-U6 for bug-gnu-emacs@gnu.org; Mon, 28 Nov 2011 07:02:15 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RUzuT-0001zG-4l for bug-gnu-emacs@gnu.org; Mon, 28 Nov 2011 07:02:14 -0500 Original-Received: from debbugs.gnu.org ([140.186.70.43]:40521) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RUzuT-0001zC-35 for bug-gnu-emacs@gnu.org; Mon, 28 Nov 2011 07:02:09 -0500 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.69) (envelope-from ) id 1RUzwI-00088a-Bf for bug-gnu-emacs@gnu.org; Mon, 28 Nov 2011 07:04:02 -0500 X-Loop: help-debbugs@gnu.org Resent-From: Eli Zaretskii Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 28 Nov 2011 12:04:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 10105 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: Original-Received: via spool by 10105-submit@debbugs.gnu.org id=B10105.132248179631224 (code B ref 10105); Mon, 28 Nov 2011 12:04:02 +0000 Original-Received: (at 10105) by debbugs.gnu.org; 28 Nov 2011 12:03:16 +0000 Original-Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1RUzvW-00087Y-Sl for submit@debbugs.gnu.org; Mon, 28 Nov 2011 07:03:16 -0500 Original-Received: from fencepost.gnu.org ([140.186.70.10]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1RUzvT-00087P-Ed for 10105@debbugs.gnu.org; Mon, 28 Nov 2011 07:03:12 -0500 Original-Received: from eliz by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1RUztd-0004xY-8M; Mon, 28 Nov 2011 07:01:17 -0500 In-reply-to: (message from Dani Moncayo on Mon, 28 Nov 2011 11:38:05 +0100) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list Resent-Date: Mon, 28 Nov 2011 07:04:02 -0500 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 140.186.70.43 X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:54354 Archived-At: > Date: Mon, 28 Nov 2011 11:38:05 +0100 > From: Dani Moncayo > Cc: 10105@debbugs.gnu.org > > 1. Eval: "(setq scroll-conservatively 101)". > 2. Eval: "(custom-set-faces '(mode-line ((t (:box (:line-width 1))))))". > 3. Visit the attached file. > 4. Type "C-s p C-s C-s C-s". > --> At this point, the Isearch has moved point to line "p1", but it's > positioned at the top of the window. It should be at the bottom. I'm quite sure this is by design: the last C-s scrolls _up_, which under scroll-conservatively means Emacs should put point at the topmost line. If you'd get to that line by C-p, that would be where point should be displayed, right? Why did you expect it to be at the bottom? And does the custom-set-faces even make a difference (I cannot test that where I'm typing this)?