diff options
author | Noam Postavsky <npostavs@gmail.com> | 2019-05-12 12:42:35 -0400 |
---|---|---|
committer | Noam Postavsky <npostavs@gmail.com> | 2019-05-19 10:35:51 -0400 |
commit | d7c8196c96fd4bb732d1336305943feb3badf27c (patch) | |
tree | f6e667b5135b2b452f0582dd7c3af09909650405 /lisp/dired-x.el | |
parent | d0e9113de9783094b4da7f6aeee131194653c325 (diff) | |
download | emacs-d7c8196c96fd4bb732d1336305943feb3badf27c.tar.gz emacs-d7c8196c96fd4bb732d1336305943feb3badf27c.tar.bz2 emacs-d7c8196c96fd4bb732d1336305943feb3badf27c.zip |
Fix dired-omit-files regexp (Bug#35668)
* lisp/dired-x.el (dired-omit-files): Match beginning and end of
string, rather than beginning and end of line.
Diffstat (limited to 'lisp/dired-x.el')
-rw-r--r-- | lisp/dired-x.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/dired-x.el b/lisp/dired-x.el index defc541ddc9..3b78ec47d93 100644 --- a/lisp/dired-x.el +++ b/lisp/dired-x.el @@ -159,7 +159,7 @@ See Info node `(dired-x) Omitting Variables' for more information." (put 'dired-omit-mode 'safe-local-variable 'booleanp) -(defcustom dired-omit-files "^\\.?#\\|^\\.$\\|^\\.\\.$" +(defcustom dired-omit-files "\\`[.]?#\\|\\`[.][.]?\\'" "Filenames matching this regexp will not be displayed. This only has effect when `dired-omit-mode' is t. See interactive function `dired-omit-mode' (\\[dired-omit-mode]) and variable |