From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Tomas Nordin Newsgroups: gmane.emacs.help Subject: Re: dired-hide-details-mode have no effect suddenly Date: Thu, 21 Sep 2017 21:20:36 +0200 Message-ID: <87k20rvoxn.fsf@fliptop> References: <87d1774qr8.fsf@fliptop> <87377vllmq.fsf@fliptop> <87shfhumd9.fsf@fliptop> <87o9q3vpep.fsf@fliptop> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: blaine.gmane.org 1506021675 10679 195.159.176.226 (21 Sep 2017 19:21:15 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Thu, 21 Sep 2017 19:21:15 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: "Charles A. Roelli" Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Sep 21 21:21:06 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 1dv721-0002GI-9m for geh-help-gnu-emacs@m.gmane.org; Thu, 21 Sep 2017 21:21:05 +0200 Original-Received: from localhost ([::1]:55219 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dv728-0005Kg-GD for geh-help-gnu-emacs@m.gmane.org; Thu, 21 Sep 2017 15:21:12 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:55658) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dv71f-0005KW-0T for help-gnu-emacs@gnu.org; Thu, 21 Sep 2017 15:20:43 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dv71b-0003tV-RI for help-gnu-emacs@gnu.org; Thu, 21 Sep 2017 15:20:42 -0400 Original-Received: from mout02.posteo.de ([185.67.36.66]:56336) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dv71b-0003su-AW for help-gnu-emacs@gnu.org; Thu, 21 Sep 2017 15:20:39 -0400 Original-Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id A51AD20B52 for ; Thu, 21 Sep 2017 21:20:37 +0200 (CEST) Original-Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 3xymfX4RZgzyny; Thu, 21 Sep 2017 21:20:36 +0200 (CEST) In-Reply-To: <87o9q3vpep.fsf@fliptop> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 185.67.36.66 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:114338 Archived-At: Tomas Nordin writes: > "Charles A. Roelli" writes: > >>> font-lock-extra-managed-props is a variable defined in =E2=80=98font-lo= ck.el=E2=80=99. >>> Its value is (invisible composition) >>>=20 >>> ... and problem is back. Who has changed it I don't know. I know that it >>> has happened around doing some magit. >>>=20 >>> Cool, resetting that variable to nil removes the problem. But still, >>> hmm, ehh. >> >> Neat. Does M-x rgrep font-lock-extra-managed-props RET * RET >> ~/.emacs.d/elpa/ show anything interesting? > > Yes, three. I think the relevant two are those: > > ./markdown-mode-20170610.602/markdown-mode.el:7783: (add-to-list 'font-l= ock-extra-managed-props 'composition) > ./markdown-mode-20170610.602/markdown-mode.el:7789: (add-to-list 'font-l= ock-extra-managed-props 'invisible) I have updated that package and now those variables are manipulated like th= is: (setq-local font-lock-extra-managed-props (append font-lock-extra-managed-props '(composition display invisible))) Is this a more proper way to do it? :)