diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-05-07 23:01:13 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-05-07 23:01:13 -0400 |
commit | 273c0557c2e3d935260c5479a319228a5e9dbcc1 (patch) | |
tree | a376e6b47e282032846031e42e936da5a942bb44 | |
parent | c199ee7a11ccc4e7935c1407987fcb2bfaa431f5 (diff) | |
download | emacs.d-273c0557c2e3d935260c5479a319228a5e9dbcc1.tar.gz |
Fix typo in dired comment
-rw-r--r-- | lisp/init-dired.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/init-dired.el b/lisp/init-dired.el index 597df4c..9b401ff 100644 --- a/lisp/init-dired.el +++ b/lisp/init-dired.el @@ -2,9 +2,8 @@ (require 'dired-x) -;; .git is present as part of `dired-omit-extensions', but this -;; seems to only be taken into account if the a non-exension part -;; exists. +;; .git is present as part of `dired-omit-extensions', but this seems to +;; only be taken into account if a non-exension part exists. (setq dired-omit-files (concat dired-omit-files "\\|\\.git$\\|\\.gitignore$\\|__pycache__")) |