diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-09-14 07:55:56 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-09-14 07:57:14 +0200 |
commit | 25ebb9374bdadf66153727831fc7ff131c8cf299 (patch) | |
tree | 7ed04a5efe70f4f6e66118aebd9ccee12275d6bf /lisp/eshell/em-glob.el | |
parent | cf2fa6c87f4da4665ff8a9e8e220bba0b5bccefc (diff) | |
download | emacs-25ebb9374bdadf66153727831fc7ff131c8cf299.tar.gz emacs-25ebb9374bdadf66153727831fc7ff131c8cf299.tar.bz2 emacs-25ebb9374bdadf66153727831fc7ff131c8cf299.zip |
; More minor docfixes found by checkdoc
Diffstat (limited to 'lisp/eshell/em-glob.el')
-rw-r--r-- | lisp/eshell/em-glob.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/eshell/em-glob.el b/lisp/eshell/em-glob.el index e36f2d0c7fe..ba12e43a3c2 100644 --- a/lisp/eshell/em-glob.el +++ b/lisp/eshell/em-glob.el @@ -91,7 +91,7 @@ This option slows down recursive glob processing by quite a bit." (defcustom eshell-error-if-no-glob nil "If non-nil, it is an error for a glob pattern not to match. - This mimics the behavior of zsh if non-nil, but bash if nil." +This mimics the behavior of zsh if non-nil, but bash if nil." :type 'boolean :group 'eshell-glob) @@ -266,7 +266,7 @@ the form: ;; FIXME does this really need to abuse eshell-glob-matches, message-shown? (defun eshell-glob-entries (path globs &optional recurse-p) - "Glob the entries in PATHS, possibly recursing if RECURSE-P is non-nil." + "Glob the entries in PATH, possibly recursing if RECURSE-P is non-nil." (let* ((entries (ignore-errors (file-name-all-completions "" path))) (case-fold-search eshell-glob-case-insensitive) |