]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/saveplace.el (save-place-ignore-files-regexp): Fix last change.
authorEli Zaretskii <eliz@gnu.org>
Thu, 14 Sep 2023 13:18:03 +0000 (16:18 +0300)
committerEli Zaretskii <eliz@gnu.org>
Thu, 14 Sep 2023 13:18:03 +0000 (16:18 +0300)
lisp/saveplace.el

index 92228dc8e7890be5c5d6e3e02c4eeae9a53833e0..97c631b39b0333cb9a990d4ba314edeaec44403a 100644 (file)
@@ -128,12 +128,12 @@ removable and network volumes."
 
 (defcustom save-place-ignore-files-regexp
   "\\(?:COMMIT_EDITMSG\\|hg-editor-[[:alnum:]]+\\.txt\\|svn-commit\\.tmp\\|bzr_log\\.[[:alnum:]]+\\)$"
-  "Regexp matching files for which no position should be recorded.
-Useful for temporary file such as commit message files that are
-automatically created by the VCS.  If set to nil, this feature is
-disabled, i.e., the position is recorded for all files."
+  "Regexp matching files whose positions should not be recorded.
+Useful to exclude temporary files, such as commit message files that are
+automatically created by VCSes.  If set to nil, this feature is
+disabled, i.e., no files are excluded."
   :version "24.1"
-  :type '(choice (const :tag "Record position for all files" nil)
+  :type '(choice (const :tag "Don't exclude any files" nil)
                  regexp))
 
 (declare-function dired-current-directory "dired" (&optional localp))