From f7ba92287d9eda38c5a65f78b3e009ea151c6fdb Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Mon, 21 Nov 2022 11:20:01 +0100 Subject: [PATCH] Make instructions for updating ancient filesets obsolete * lisp/filesets.el (filesets-update-pre010505): Make update information for filesets older than 2001 obsolete. Note that this dates back to before filesets.el was even added to Emacs. --- lisp/filesets.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/filesets.el b/lisp/filesets.el index aeebd907c35..9f07072e787 100644 --- a/lisp/filesets.el +++ b/lisp/filesets.el @@ -2390,6 +2390,7 @@ fileset thinks this is necessary or not." (filesets-menu-cache-file-load)) (defun filesets-update-pre010505 () + (declare (obsolete nil "29.1")) (let ((msg (format-message "Filesets: manual editing of user data required! @@ -2435,7 +2436,8 @@ We apologize for the inconvenience."))) ((or (not cached-version) (string< cached-version "1.5.5") (boundp 'filesets-subdocument-patterns)) - (filesets-update-pre010505))) + (with-suppressed-warnings ((obsolete filesets-update-pre010505)) + (filesets-update-pre010505)))) (filesets-update-cleanup)) (defun filesets-menu-cache-file-load () -- 2.39.5