summaryrefslogtreecommitdiff
path: root/lisp/files.el
diff options
context:
space:
mode:
authorBasil L. Contovounesios <contovob@tcd.ie>2023-09-22 11:27:29 +0200
committerBasil L. Contovounesios <contovob@tcd.ie>2023-09-22 15:15:36 +0200
commite27ec0e41442067e88d58459fbc9814429f1d3dc (patch)
treef740d55bb6fb6170f4c0fc84fcee6febee418d1a /lisp/files.el
parentde50e2ad4cd62f83986af82002c83359a5b88d64 (diff)
downloademacs-e27ec0e41442067e88d58459fbc9814429f1d3dc.tar.gz
emacs-e27ec0e41442067e88d58459fbc9814429f1d3dc.tar.bz2
emacs-e27ec0e41442067e88d58459fbc9814429f1d3dc.zip
Improve remote-file-name-inhibit-cache :type
* lisp/files.el (remote-file-name-inhibit-cache) (shell-highlight-undef-remote-file-name-inhibit-cache): Avoid duplicated :tag string. Try to clarify wording and formatting (bug#66150). * lisp/shell.el (shell--highlight-undef-exec-cache): Reference correct user option in docstring.
Diffstat (limited to 'lisp/files.el')
-rw-r--r--lisp/files.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/files.el b/lisp/files.el
index 32c39a8cacb..b72f141c0ee 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -1318,10 +1318,10 @@ consecutive checks. For example:
:group 'files
:version "24.1"
:type '(choice
- (const :tag "Do not inhibit file name cache" nil)
- (const :tag "Do not use file name cache" t)
- (integer :tag "Do not use file name cache"
- :format "Do not use file name cache older then %v seconds"
+ (const :tag "Do not cache remote file attributes" t)
+ (const :tag "Cache remote file attributes" nil)
+ (integer :tag "Cache remote file attributes with expiration"
+ :format "Cache expiry in seconds: %v"
:value 10)))
(defun file-local-name (file)