diff options
| author | Richard M. Stallman | 1997-07-17 19:15:13 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-07-17 19:15:13 +0000 |
| commit | 99358b9788c9c6849f8fa17984dfa57853502cd7 (patch) | |
| tree | 66da9c86697cf1a101dd068dd90065ce227b28f9 | |
| parent | 82b6a81f61c4710d1d830f7be6c55ce250b22dcb (diff) | |
| download | emacs-99358b9788c9c6849f8fa17984dfa57853502cd7.tar.gz emacs-99358b9788c9c6849f8fa17984dfa57853502cd7.zip | |
(dired-omit-files): Add ".#foo" lock files to omissions.
| -rw-r--r-- | lisp/dired-x.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/dired-x.el b/lisp/dired-x.el index aed4373105a..68034345031 100644 --- a/lisp/dired-x.el +++ b/lisp/dired-x.el | |||
| @@ -185,12 +185,12 @@ plus those ending with extensions in `dired-omit-extensions'." | |||
| 185 | :group 'dired-x) | 185 | :group 'dired-x) |
| 186 | (make-variable-buffer-local 'dired-omit-files-p) | 186 | (make-variable-buffer-local 'dired-omit-files-p) |
| 187 | 187 | ||
| 188 | (defcustom dired-omit-files "^#\\|^\\.$\\|^\\.\\.$" | 188 | (defcustom dired-omit-files "^\\.?#\\|^\\.$\\|^\\.\\.$" |
| 189 | "*Filenames matching this regexp will not be displayed. | 189 | "*Filenames matching this regexp will not be displayed. |
| 190 | This only has effect when `dired-omit-files-p' is t. See interactive function | 190 | This only has effect when `dired-omit-files-p' is t. See interactive function |
| 191 | `dired-omit-toggle' \(\\[dired-omit-toggle]\) and variable | 191 | `dired-omit-toggle' \(\\[dired-omit-toggle]\) and variable |
| 192 | `dired-omit-extensions'. The default is to omit `.', `..', and auto-save | 192 | `dired-omit-extensions'. The default is to omit `.', `..', auto-save |
| 193 | files." | 193 | files and lock files." |
| 194 | :type 'regexp | 194 | :type 'regexp |
| 195 | :group 'dired-x) | 195 | :group 'dired-x) |
| 196 | 196 | ||