]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix docstrings to have a complete sentence in first line
authorReuben Thomas <rrt@sc3d.org>
Fri, 2 Dec 2016 16:36:43 +0000 (16:36 +0000)
committerReuben Thomas <rrt@sc3d.org>
Fri, 2 Dec 2016 16:38:05 +0000 (16:38 +0000)
* lisp/dired-x.el (dired-omit-case-fold, dired-omit-case-fold-p): Fix
docstrings.

lisp/dired-x.el

index 1a844ae0f614f8aa80276d1c690ee1d3fa8dc56d..a3034d189c74185041af1fd7a92fad2b6b7a0692 100644 (file)
@@ -120,11 +120,10 @@ If nil, there is no maximum size."
   :group 'dired-x)
 
 (defcustom dired-omit-case-fold 'filesystem
-  "Determine whether `dired-omit-mode' will use case-folding to
-match the regexp of files to omit.  When nil, always be
-case-sensitive; when t, always be case-insensitive; the default
-value, 'filesystem, causes case folding to be used on
-case-insensitive filesystems only."
+  "Determine whether \"omitting\" patterns are case-sensitive.
+When nil, always be case-sensitive; when t, always be
+case-insensitive; the default value, 'filesystem, causes case
+folding to be used on case-insensitive filesystems only."
   :type '(choice (const :tag "Always case-sensitive" nil)
                 (const :tag "Always case-insensitive" t)
                 (const :tag "According to filesystem" filesystem))
@@ -132,9 +131,7 @@ case-insensitive filesystems only."
   :version "26.1")
 
 (defun dired-omit-case-fold-p (dir)
-  "Return t if, according to `dired-omit-case-fold',
-  `dired-omit-mode' should use case folding to interpret its
-  regexp in directory DIR, or nil otherwise."
+  "Non-nil if `dired-omit-mode' should be case-insensitive in DIR."
   (if (eq dired-omit-case-fold 'filesystem)
       (file-name-case-sensitive-p dir)
     dired-omit-case-fold))