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: Redisplay bug in margin Date: Wed, 26 Sep 2007 16:16:33 +0200 Message-ID: References: <87odfxxah9.fsf@escher.local.home> <87r6kpe9tl.fsf@escher.local.home> <87bqbtdmk7.fsf@escher.local.home> <87ps06wmji.fsf@escher.local.home> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1190816235 8501 80.91.229.12 (26 Sep 2007 14:17:15 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 26 Sep 2007 14:17:15 +0000 (UTC) Cc: Stephen Berman , emacs-devel@gnu.org To: "Stefan Monnier" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Sep 26 16:17:11 2007 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 1IaXgw-00046g-SE for ged-emacs-devel@m.gmane.org; Wed, 26 Sep 2007 16:16:43 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IaXgt-0004Ps-H3 for ged-emacs-devel@m.gmane.org; Wed, 26 Sep 2007 10:16:39 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IaXgp-0004P0-O3 for emacs-devel@gnu.org; Wed, 26 Sep 2007 10:16:35 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IaXgo-0004Mk-2u for emacs-devel@gnu.org; Wed, 26 Sep 2007 10:16:35 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IaXgn-0004Md-Tt for emacs-devel@gnu.org; Wed, 26 Sep 2007 10:16:33 -0400 Original-Received: from wx-out-0506.google.com ([66.249.82.226]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IaXgn-0004oX-Mp for emacs-devel@gnu.org; Wed, 26 Sep 2007 10:16:33 -0400 Original-Received: by wx-out-0506.google.com with SMTP id s7so1629220wxc for ; Wed, 26 Sep 2007 07:16:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; 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=DPEpslLOEO8cgRGRQUDc5NhJpdzq57IJLSy9OttQNN0=; b=ndI4YKZDdApgwH5m0kVNsInqLrAEJPbw+LYC9bhyvzDOaV1GoG5iln13vjJ1KkrLeF2FDPsNB24mkbNmF6Ds5ZZcoR1a3OBf4Dptfgbd5li9iEK9RgT/jyxnAhrNmoF0X9NZbDKlLfHCNRG9GnylUYs73DSTmQvc4BDFHOhXZ3Y= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=iFOg4vQlQyKE/C1iyMQdKvB1PXIgAjd3suJjneMJavKHn1nuBiP08n6EsvLqMR9Mm5hOEK092IpLPnn0HTmbSp/z+dUWo2Eiec68QszRwUSnoq4EwGPj+LgfOaCpFrNyihnXXfafXFf1SS7sfv7UW19YS83QTmWLjKhLgFhpNOw= Original-Received: by 10.90.105.20 with SMTP id d20mr693520agc.1190816193101; Wed, 26 Sep 2007 07:16:33 -0700 (PDT) Original-Received: by 10.90.103.8 with HTTP; Wed, 26 Sep 2007 07:16:33 -0700 (PDT) In-Reply-To: Content-Disposition: inline X-Detected-Kernel: 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:79907 Archived-At: On 9/26/07, Stefan Monnier wrote: > The original impression was that it was a bug in Emacs rather than > in linum. So does the 0.9v version actually fix the bug (i.e. it really > was in linum.el after all) or does it just work around it? It was a bug in linum, which I erroneously took for a redisplay bug. In some circumstances, linum added the before-string property twice to some lines. Markus detected the problem and fixed it. Juanma