From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Andreas Politz Newsgroups: gmane.emacs.devel Subject: Re: [Emacs-diffs] master 8275687: Fix a segfault due to failure to realize some faces Date: Mon, 27 Mar 2017 10:59:52 +0200 Message-ID: <87mvc7ayd3.fsf@luca> References: <87d1d4w3jf.fsf@calancha-pc> <87r31jbxxr.fsf@luca> <83shlz8nft.fsf@gnu.org> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: blaine.gmane.org 1490605489 10351 195.159.176.226 (27 Mar 2017 09:04:49 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Mon, 27 Mar 2017 09:04:49 +0000 (UTC) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.0.50 (gnu/linux) Cc: emacs-devel@gnu.org, tino.calancha@gmail.com To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Mar 27 11:04:38 2017 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1csQZf-0000dW-EZ for ged-emacs-devel@m.gmane.org; Mon, 27 Mar 2017 11:04:27 +0200 Original-Received: from localhost ([::1]:45176 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1csQZl-0002wC-AM for ged-emacs-devel@m.gmane.org; Mon, 27 Mar 2017 05:04:33 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:45498) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1csQYz-0002w7-Rk for emacs-devel@gnu.org; Mon, 27 Mar 2017 05:03:46 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1csQYw-0000tB-0s for emacs-devel@gnu.org; Mon, 27 Mar 2017 05:03:45 -0400 Original-Received: from gateway-a.fh-trier.de ([143.93.54.181]:57043) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1csQYq-0000rT-9t; Mon, 27 Mar 2017 05:03:36 -0400 X-Virus-Scanned: by Amavisd-new + McAfee uvscan + ClamAV [Rechenzentrum Hochschule Trier (RZ/HT)] Original-Received: from localhost (ip5f5bdecf.dynamic.kabel-deutschland.de [95.91.222.207]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: politza) by gateway-a.fh-trier.de (Postfix) with ESMTPSA id 3C600179B3AD; Mon, 27 Mar 2017 10:59:53 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha1; c=simple/simple; d=hochschule-trier.de; s=default; t=1490605193; bh=5TR/uOa0ipapuscSnI4fD2wVwtw=; h=From:To:Cc:Subject:References:Date:In-Reply-To:Message-ID: MIME-Version:Content-Type; b=BuZTExUfEp796AVPIbisSl3BiDvzWxL1V7oeoOGmYIJpRbYGRO1KhKDHbmxhHIuOj Yaag3GQmeczW8WBVyYwoTayRK9GRjJKqgZ/pVHB3i3Y/Rm2CKHQeOKTFzvZAEp4ZJG AmN5okgMSTQap5ScNZwYOJzEEjaFdhUz1pG10Ivg= In-Reply-To: <83shlz8nft.fsf@gnu.org> (Eli Zaretskii's message of "Mon, 27 Mar 2017 05:26:30 +0300") X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x [fuzzy] X-Received-From: 143.93.54.181 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:213405 Archived-At: Eli Zaretskii writes: >> > can someone reproduce the following issue? >> > >> > emacs -Q ~ >> > ;; The Dired buffer appear messy: Some columns are duplicated. >> > ;; Just hit for instance, 'g' clean the buffer and show it correctly. If you >> > ;; hit arrow keys instead, for instance , the buffer keeps messy. >> >> Yes, I can. C-l makes it go away as well as entering the mini-buffer. > > This indicates it's a redisplay problem. > > Did the problem go away with my latest changes to xdisp.c on master? Yes, it did. -ap