From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: charles@aurox.ch (Charles A. Roelli) Newsgroups: gmane.emacs.help Subject: Re: dired-hide-details-mode have no effect suddenly Date: Tue, 05 Sep 2017 21:10:33 +0200 Message-ID: References: <87d1774qr8.fsf@fliptop> NNTP-Posting-Host: blaine.gmane.org X-Trace: blaine.gmane.org 1504638758 26379 195.159.176.226 (5 Sep 2017 19:12:38 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Tue, 5 Sep 2017 19:12:38 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Tomas Nordin Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Sep 05 21:12:24 2017 Return-path: Envelope-to: geh-help-gnu-emacs@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 1dpJGJ-0004rj-Np for geh-help-gnu-emacs@m.gmane.org; Tue, 05 Sep 2017 21:11:52 +0200 Original-Received: from localhost ([::1]:60883 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dpJGL-00005s-RJ for geh-help-gnu-emacs@m.gmane.org; Tue, 05 Sep 2017 15:11:53 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:60751) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dpJFR-0008VI-29 for help-gnu-emacs@gnu.org; Tue, 05 Sep 2017 15:11:04 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dpJFI-00052N-9g for help-gnu-emacs@gnu.org; Tue, 05 Sep 2017 15:10:57 -0400 Original-Received: from sinyavsky.aurox.ch ([37.35.109.145]:57099) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dpJFI-00050x-0I for help-gnu-emacs@gnu.org; Tue, 05 Sep 2017 15:10:48 -0400 Original-Received: from sinyavsky.aurox.ch (sinyavsky.aurox.ch [127.0.0.1]) by sinyavsky.aurox.ch (Postfix) with ESMTP id 76DC122529 for ; Tue, 5 Sep 2017 19:04:43 +0000 (UTC) Authentication-Results: sinyavsky.aurox.ch (amavisd-new); dkim=pass (1024-bit key) reason="pass (just generated, assumed good)" header.d=aurox.ch DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=aurox.ch; h= references:subject:subject:in-reply-to:to:from:from:message-id :date:date; s=dkim; t=1504638282; x=1505502283; bh=e/UJApl6uEnTC qpLmXEdOIQXk59rqnTJaoijJVksjs4=; b=WfYd0HRyC8Q9xkaodE8MjnfPzjjSJ qyMn2vOHGbh0sSo9a9XqV6dwS0nfWVrCgnZ5S3anlVr3AkGlmfSIM4fdWftqzlky 5jHqtmBQnynjwM46pHRLsDYnUNKynJopq31nf1GEgezxlerI0DVAAhQhTxrwSKQz CMCyx6Nep7syFA= X-Virus-Scanned: Debian amavisd-new at test.virtualizor.com Original-Received: from sinyavsky.aurox.ch ([127.0.0.1]) by sinyavsky.aurox.ch (sinyavsky.aurox.ch [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id 5os8UCR_FRWR for ; Tue, 5 Sep 2017 19:04:42 +0000 (UTC) Original-Received: from gray (125.85.192.178.dynamic.wline.res.cust.swisscom.ch [178.192.85.125]) by sinyavsky.aurox.ch (Postfix) with ESMTPSA id 6CA8022518; Tue, 5 Sep 2017 19:04:41 +0000 (UTC) In-reply-to: <87d1774qr8.fsf@fliptop> (message from Tomas Nordin on Sun, 03 Sep 2017 19:48:59 +0200) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 37.35.109.145 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: "help-gnu-emacs" Xref: news.gmane.org gmane.emacs.help:114183 Archived-At: > From: Tomas Nordin > Date: Sun, 03 Sep 2017 19:48:59 +0200 > Content-Type: text/plain > > Hi List > > Here is a problem I don't know how to reproduce. I have this in my > .emacs: > > (add-hook 'dired-mode-hook 'dired-hide-details-mode) > > and details are hidden by default, the way I like it. Sometimes I need > to see some details and I use (default I think) the key ( to toggle > visibility of details. > > However, suddenly after some long time of keeping emacs alive, details > are always shown and I cannot toggle it. I have been trying to detect at > what moment this happens but I fail to understand what the interference > is. At this point all I can think of is restarting emacs. Did somebody > notice a similar problem? > > Best regards > -- > Tomas I had the same issue once. I had mistakenly added to the global value of the variable 'font-lock-extra-managed-props' in some of my own code for a buffer-local minor mode, instead of making the variable buffer-local. That resulted in dired-hide-details-mode breaking (and a month's worth of confusion).