emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 5315275: Fix docstrings to have a complete sentence


From: Reuben Thomas
Subject: [Emacs-diffs] master 5315275: Fix docstrings to have a complete sentence in first line
Date: Fri, 2 Dec 2016 16:38:22 +0000 (UTC)

branch: master
commit 5315275f849d664ff4b5124ef9411a2c16114fd9
Author: Reuben Thomas <address@hidden>
Commit: Reuben Thomas <address@hidden>

    Fix docstrings to have a complete sentence in first line
    
    * lisp/dired-x.el (dired-omit-case-fold, dired-omit-case-fold-p): Fix
    docstrings.
---
 lisp/dired-x.el |   13 +++++--------
 1 file changed, 5 insertions(+), 8 deletions(-)

diff --git a/lisp/dired-x.el b/lisp/dired-x.el
index 1a844ae..a3034d1 100644
--- a/lisp/dired-x.el
+++ b/lisp/dired-x.el
@@ -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))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]