From cd861f4e80b9bd0d656b024834ea49dbbd02f399 Mon Sep 17 00:00:00 2001 From: "Basil L. Contovounesios" Date: Fri, 22 Sep 2023 11:27:29 +0200 Subject: [PATCH] Improve remote-file-name-inhibit-cache :type * lisp/files.el (remote-file-name-inhibit-cache): Avoid duplicated :tag string. Try to clarify wording and formatting. --- lisp/files.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/files.el b/lisp/files.el index b67482a2f74..3f351d2aff8 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -1322,10 +1322,10 @@ remote-file-name-inhibit-cache :group 'tramp :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 "Inhibit remote file cache" t) + (const :tag "Cache remote file attributes" nil) + (integer :tag "Cache remote file attributes with expiration" + :format "Cache expiry in seconds: %v" :value 10))) (defcustom remote-file-name-access-timeout nil -- 2.40.1