aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2010-03-30 19:10:14 +0300
committerJuri Linkov2010-03-30 19:10:14 +0300
commit2223a1b3346c38d4b76c136f35c55ed161cb7e24 (patch)
tree5b0fad2d3d069a0c25d603f01145d2a5218903d2
parentdc2d2590b24f7e4ee648b5d073ba744fbda7a4d8 (diff)
downloademacs-2223a1b3346c38d4b76c136f35c55ed161cb7e24.tar.gz
emacs-2223a1b3346c38d4b76c136f35c55ed161cb7e24.zip
* dired-x.el (dired-omit-mode): Doc fix.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/dired-x.el8
2 files changed, 11 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d3c5610972b..301d061c822 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,9 @@
12010-03-30 Juri Linkov <juri@jurta.org> 12010-03-30 Juri Linkov <juri@jurta.org>
2 2
3 * dired-x.el (dired-omit-mode): Doc fix.
4
52010-03-30 Juri Linkov <juri@jurta.org>
6
3 Make occur handle multi-line matches cleanly with context. 7 Make occur handle multi-line matches cleanly with context.
4 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01280.html 8 http://lists.gnu.org/archive/html/emacs-devel/2010-03/msg01280.html
5 9
diff --git a/lisp/dired-x.el b/lisp/dired-x.el
index f919840e65d..aba4b7a7a9d 100644
--- a/lisp/dired-x.el
+++ b/lisp/dired-x.el
@@ -163,7 +163,13 @@ With numeric ARG, enable Dired-Omit mode if ARG is positive, disable
163otherwise. Enabling and disabling is buffer-local. 163otherwise. Enabling and disabling is buffer-local.
164If enabled, \"uninteresting\" files are not listed. 164If enabled, \"uninteresting\" files are not listed.
165Uninteresting files are those whose filenames match regexp `dired-omit-files', 165Uninteresting files are those whose filenames match regexp `dired-omit-files',
166plus those ending with extensions in `dired-omit-extensions'." 166plus those ending with extensions in `dired-omit-extensions'.
167
168To enable omitting in every Dired buffer, you can put in your ~/.emacs
169
170 (add-hook 'dired-mode-hook (lambda () (dired-omit-mode 1)))
171
172See Info node `(dired-x) Omitting Variables' for more information."
167 :group 'dired-x 173 :group 'dired-x
168 (if dired-omit-mode 174 (if dired-omit-mode
169 ;; This will mention how many lines were omitted: 175 ;; This will mention how many lines were omitted: