diff options
author | Tino Calancha <tino.calancha@gmail.com> | 2017-07-31 14:55:47 +0900 |
---|---|---|
committer | Tino Calancha <tino.calancha@gmail.com> | 2017-07-31 14:55:47 +0900 |
commit | 6ebef3daf24c847d6f16621489ae587e98c11ec0 (patch) | |
tree | cf39922ca8cc0185b4a8c7644bdf647f5b2edf90 /lisp/dired.el | |
parent | ebce9c2440e69a1c521cb6ad58a909161cfefc7e (diff) | |
download | emacs-6ebef3daf24c847d6f16621489ae587e98c11ec0.tar.gz |
* lisp/dired (dired-trivial-filenames): Use \` and \' to match string bounds
Diffstat (limited to 'lisp/dired.el')
-rw-r--r-- | lisp/dired.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/dired.el b/lisp/dired.el index a056ad679fa..ca005785d67 100644 --- a/lisp/dired.el +++ b/lisp/dired.el @@ -133,7 +133,7 @@ always set this variable to t." :type 'boolean :group 'dired-mark) -(defcustom dired-trivial-filenames (purecopy "^\\.\\.?$\\|^#") +(defcustom dired-trivial-filenames (purecopy "\\`\\.\\.?\\'\\|\\`#") "Regexp of files to skip when finding first file of a directory. A value of nil means move to the subdir line. A value of t means move to first file." |