From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/7963 Path: main.gmane.org!not-for-mail From: Christopher Davis Newsgroups: gmane.emacs.gnus.general Subject: Re: XEmacs 19.15 and gnus, summary buffer strangeness? Date: 20 Sep 1996 13:18:31 -0400 Message-ID: References: <199609182018.PAA00327@mordor.rsn.hp.com> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 (generated by tm-edit 7.71) Content-Type: text/plain; charset=US-ASCII X-Trace: main.gmane.org 1035148201 9350 80.91.224.250 (20 Oct 2002 21:10:01 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 21:10:01 +0000 (UTC) Cc: ding@ifi.uio.no Return-Path: ding-request@ifi.uio.no Original-Received: from ifi.uio.no (ifi.uio.no [129.240.64.2]) by deanna.miranova.com (8.7.6/8.6.9) with SMTP id KAA18709 for ; Fri, 20 Sep 1996 10:47:43 -0700 Original-Received: from loiosh.kei.com (ckd@loiosh.kei.com [192.88.144.32]) by ifi.uio.no with ESMTP (8.6.11/ifi2.4) id for ; Fri, 20 Sep 1996 19:22:06 +0200 Original-Received: (from ckd@localhost) by loiosh.kei.com (8.7.6/8.7.3) id NAA25826; Fri, 20 Sep 1996 13:18:31 -0400 (EDT) Original-To: holder@mordor.rsn.hp.com (Shane Holder) X-Attribution: ckd In-Reply-To: holder@mordor.rsn.hp.com's message of 18 Sep 96 20:18:28 GMT Original-Lines: 24 X-Mailer: Gnus v5.2.34/XEmacs 19.14 Xref: main.gmane.org gmane.emacs.gnus.general:7963 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:7963 SH> == Shane Holder SH> 10 articles in the summary buffer. SH> 8 lines displayed in the Summary buffer SH> use 'n' or 'N' to scroll through the articles SH> Once there are only 2 articles below the window and I hit n/N the SH> cursor moves to the middle of the window (the 5th article), but SH> displays the 9th article, and I can never get to the 10th article SH> via n/N. Do you have horizontal scrollbars in the summary buffer? Weird things can happen to scrolling with them (or the modeline shadows) when partial lines are clipped. Try (setq scroll-on-clipped-lines nil) and/or this hook: (defun ckd-no-hscrollbar-this-buffer () "Turn off the horizontal scrollbar for this buffer." (and (fboundp 'set-specifier) scrollbar-height (set-specifier scrollbar-height (cons (current-buffer) 0)))) (add-hook 'gnus-summary-mode-hook 'ckd-no-hscrollbar-this-buffer) (add-hook 'gnus-group-mode-hook 'ckd-no-hscrollbar-this-buffer)