[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/dired.el
From: |
Richard M . Stallman |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/dired.el |
Date: |
Sun, 22 May 2005 09:35:22 -0400 |
Index: emacs/lisp/dired.el
diff -c emacs/lisp/dired.el:1.311 emacs/lisp/dired.el:1.312
*** emacs/lisp/dired.el:1.311 Tue May 17 17:23:34 2005
--- emacs/lisp/dired.el Sun May 22 13:35:21 2005
***************
*** 418,424 ****
;; It is quicker to first find just an extension, then go back to the
;; start of that file name. So we do this complex MATCH-ANCHORED form.
(list (concat "\\(" (regexp-opt completion-ignored-extensions)
"\\|#\\)$")
! '(".+" (dired-move-to-filename) nil (0 dired-ignored-face)))))
"Additional expressions to highlight in Dired mode.")
;;; Macros must be defined before they are used, for the byte compiler.
--- 418,441 ----
;; It is quicker to first find just an extension, then go back to the
;; start of that file name. So we do this complex MATCH-ANCHORED form.
(list (concat "\\(" (regexp-opt completion-ignored-extensions)
"\\|#\\)$")
! '(".+" (dired-move-to-filename) nil (0 dired-ignored-face))))
! ;;
! ;; Files suffixed with `completion-ignored-extensions'
! ;; plus a character put in by -F.
! '(eval .
! (list (concat "\\(" (regexp-opt completion-ignored-extensions)
! "\\|#\\)[*=|]$")
! '(".+" (progn
! (end-of-line)
! ;; If the last character is not part of the filename,
! ;; move back to the start of the filename
! ;; so it can be fontified.
! ;; Otherwise, leave point at the end of the line;
! ;; that way, nothing is fontified.
! (unless (get-text-property (1- (point)) 'mouse-face)
! (dired-move-to-filename)))
! nil (0 dired-ignored-face))))
! )
"Additional expressions to highlight in Dired mode.")
;;; Macros must be defined before they are used, for the byte compiler.