From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Chong Yidong Newsgroups: gmane.emacs.devel Subject: Fringe angle bitmap at at eob Date: Thu, 27 Oct 2005 11:09:33 -0400 Message-ID: <87u0f3uhci.fsf@stupidchicken.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1130428713 32635 80.91.229.2 (27 Oct 2005 15:58:33 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 27 Oct 2005 15:58:33 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Oct 27 17:58:33 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1EVA3Z-00038F-ED for ged-emacs-devel@m.gmane.org; Thu, 27 Oct 2005 17:52:45 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EVA3Y-00026J-R6 for ged-emacs-devel@m.gmane.org; Thu, 27 Oct 2005 11:52:44 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1EV9Ng-0007lV-18 for emacs-devel@gnu.org; Thu, 27 Oct 2005 11:09:28 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1EV9Nf-0007kz-5H for emacs-devel@gnu.org; Thu, 27 Oct 2005 11:09:27 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EV9Ne-0007km-R8 for emacs-devel@gnu.org; Thu, 27 Oct 2005 11:09:26 -0400 Original-Received: from [18.95.6.101] (helo=localhost.localdomain) by monty-python.gnu.org with esmtp (Exim 4.34) id 1EV9Ne-0007pG-Lz for emacs-devel@gnu.org; Thu, 27 Oct 2005 11:09:26 -0400 Original-Received: by localhost.localdomain (Postfix, from userid 1000) id 059051E416B; Thu, 27 Oct 2005 11:09:33 -0400 (EDT) Original-To: emacs-devel@gnu.org 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:44971 Archived-At: I've installed a fix for the following issue in FOR-RELEASE: ** Rework how the fringe "angle" bitmap at at bottom of buffer is shown to include an indication of whether the last line has a NL or not. This involved a one-line change, from if (MATRIX_ROW_END_CHARPOS (row) >= BUF_ZV (XBUFFER (w->buffer)) to if (row->ends_at_zv_p in fringe.c:863. This just displays the eob fringe angle bitmap one line further down when the buffer ends in a final newline. I've checked with KFS, and he's OK with the change. Pls test it out and see if there are any problems.