[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master f7ba92287d 2/3: Make instructions for updating ancient filesets o
From: |
Stefan Kangas |
Subject: |
master f7ba92287d 2/3: Make instructions for updating ancient filesets obsolete |
Date: |
Mon, 21 Nov 2022 06:12:46 -0500 (EST) |
branch: master
commit f7ba92287d9eda38c5a65f78b3e009ea151c6fdb
Author: Stefan Kangas <stefankangas@gmail.com>
Commit: Stefan Kangas <stefankangas@gmail.com>
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 aeebd907c3..9f07072e78 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 ()