aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/eshell/em-ls.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e535f7f3e80..a6b085cd5cd 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -4,6 +4,10 @@
4 4
52001-01-29 Dave Love <fx@gnu.org> 52001-01-29 Dave Love <fx@gnu.org>
6 6
7 * eshell/esh-ext.el (eshell-windows-shell-file): Fix :type.
8
9 * eshell/em-ls.el (eshell-ls-exclude-regexp): Fix :type.
10
7 * progmodes/tcl.el (outline, dabbrev, add-log): Require when 11 * progmodes/tcl.el (outline, dabbrev, add-log): Require when
8 compiling. 12 compiling.
9 (tcl-using-emacs-19-23): Consider Emacs 21+. 13 (tcl-using-emacs-19-23): Consider Emacs 21+.
diff --git a/lisp/eshell/em-ls.el b/lisp/eshell/em-ls.el
index 534ea932c3c..97a342b73ac 100644
--- a/lisp/eshell/em-ls.el
+++ b/lisp/eshell/em-ls.el
@@ -85,7 +85,7 @@ This is useful for enabling human-readable format (-h), for example."
85 85
86(defcustom eshell-ls-exclude-regexp nil 86(defcustom eshell-ls-exclude-regexp nil
87 "*Unless -a is specified, files matching this regexp will not be shown." 87 "*Unless -a is specified, files matching this regexp will not be shown."
88 :type 'regexp 88 :type '(choice regexp (const nil))
89 :group 'eshell-ls) 89 :group 'eshell-ls)
90 90
91(defcustom eshell-ls-exclude-hidden t 91(defcustom eshell-ls-exclude-hidden t