From: Eli Zaretskii Date: Thu, 14 Sep 2023 13:18:03 +0000 (+0300) Subject: ; * lisp/saveplace.el (save-place-ignore-files-regexp): Fix last change. X-Git-Tag: emacs-29.1.90~94 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f0a89fa1d0e5b380ecadb57052c95b31110c0323;p=emacs.git ; * lisp/saveplace.el (save-place-ignore-files-regexp): Fix last change. --- diff --git a/lisp/saveplace.el b/lisp/saveplace.el index 92228dc8e78..97c631b39b0 100644 --- a/lisp/saveplace.el +++ b/lisp/saveplace.el @@ -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))