From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Peter Lee Newsgroups: gmane.emacs.bugs Subject: Constant reverting of dired buffer Date: Wed, 18 Feb 2004 17:26:38 -0600 Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Message-ID: NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1077148698 27075 80.91.224.253 (18 Feb 2004 23:58:18 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 18 Feb 2004 23:58:18 +0000 (UTC) Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Thu Feb 19 00:58:01 2004 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1AtbZp-00028B-00 for ; Thu, 19 Feb 2004 00:58:01 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AtbZX-000532-VM for geb-bug-gnu-emacs@m.gmane.org; Wed, 18 Feb 2004 18:57:43 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1AtbYt-0004nQ-B1 for bug-gnu-emacs@gnu.org; Wed, 18 Feb 2004 18:57:03 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1AtbYM-0004bX-Ln for bug-gnu-emacs@gnu.org; Wed, 18 Feb 2004 18:57:01 -0500 Original-Received: from [199.232.41.8] (helo=mx20.gnu.org) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.24) id 1AtbJu-0007uT-4L for bug-gnu-emacs@gnu.org; Wed, 18 Feb 2004 18:41:34 -0500 Original-Received: from [151.164.30.28] (helo=mta4.rcsntx.swbell.net) by mx20.gnu.org with esmtp (Exim 4.24) id 1AtbDD-0006Kj-19 for bug-gnu-emacs@gnu.org; Wed, 18 Feb 2004 18:34:39 -0500 Original-Received: from PONGMASTER (server.austin.mshow.com [216.62.199.3] (may be forged)) by mta4.rcsntx.swbell.net (8.12.10/8.12.10) with ESMTP id i1INSMa3006117 for ; Wed, 18 Feb 2004 17:28:22 -0600 (CST) Original-To: bug-gnu-emacs@gnu.org X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Bug reports for GNU Emacs, the Swiss army knife of text editors List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.bugs:7013 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:7013 I have the following in my .emacs related to dired-x. (global-set-key (kbd "C-x C-j") 'dired-jump) (global-set-key (kbd "C-x 4 C-j") 'dired-jump-other-window) (add-hook 'dired-load-hook (lambda () (load "dired-x") ;; Set dired-x global variables here. For example: ;; (setq dired-guess-shell-gnutar "gtar") ;; (setq dired-x-hands-off-my-keys nil) )) (add-hook 'dired-mode-hook (lambda () ;; Set dired-x buffer-local variables here. For example: ;; (setq dired-omit-files-p t) )) If I uncomment the (setq dired-omit-files-p t) line (which is what I'd like to do), when I go into dired it constantly reverts the buffer which makes navigation painful, and an eye-sore with jit font locking. To get around this, I decided to just manually omit files each time I enter a dired buffer. I hit M-o to omit, and it omits, then a few seconds later it reverts to the full listing. Am I missing something from my config? Or is this a known issue with the version included in cvs emacs? Thanks. Emacs : GNU Emacs 21.3.50.1 (i386-msvc-nt5.1.2600) of 2004-02-16 on PONGMASTER Package: dired-x current state: ============== (setq dired-bind-vm nil dired-vm-read-only-folders nil dired-bind-jump t dired-bind-info t dired-bind-man t dired-find-subdir nil dired-enable-local-variables t dired-local-variables-file ".dired" dired-guess-shell-gnutar nil dired-guess-shell-gzip-quiet t dired-guess-shell-znew-switches nil dired-guess-shell-alist-user nil dired-clean-up-buffers-too t dired-omit-files-p nil dired-omit-files "^\\.?#\\|^\\.$\\|^\\.\\.$" dired-omit-extensions '("CVS/" "~" ".o" ".bin" ".bak" ".obj" ".map" ".a" ".ln" ".blg" ".bbl" ".elc" ".lof" ".glo" ".idx" ".lot" ".dvi" ".fmt" ".tfm" ".pdf" ".class" ".fas" ".lib" ".x86f" ".sparcf" ".lo" ".la" ".toc" ".log" ".aux" ".cp" ".fn" ".ky" ".pg" ".tp" ".vr" ".cps" ".fns" ".kys" ".pgs" ".tps" ".vrs" ".idx" ".lof" ".lot" ".glo" ".blg" ".bbl" ".cp" ".cps" ".fn" ".fns" ".ky" ".kys" ".pg" ".pgs" ".tp" ".tps" ".vr" ".vrs") )