emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 93727d243a: * lisp/mail/mail-utils.el (mail-string-delete): Make


From: Stefan Kangas
Subject: master 93727d243a: * lisp/mail/mail-utils.el (mail-string-delete): Make obsolete.
Date: Mon, 11 Jul 2022 16:38:16 -0400 (EDT)

branch: master
commit 93727d243a39890d8ccbe39854a69bf24e149256
Author: Stefan Kangas <stefan@marxist.se>
Commit: Stefan Kangas <stefan@marxist.se>

    * lisp/mail/mail-utils.el (mail-string-delete): Make obsolete.
---
 lisp/mail/mail-utils.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/mail/mail-utils.el b/lisp/mail/mail-utils.el
index 9ea2cc92e9..63752f953a 100644
--- a/lisp/mail/mail-utils.el
+++ b/lisp/mail/mail-utils.el
@@ -59,7 +59,7 @@ also the To field, unless this would leave an empty To field."
 (defun mail-string-delete (string start end)
   "Return a string containing all of STRING except the part
 from START (inclusive) to END (exclusive)."
-  ;; FIXME: This is not used anywhere.  Make obsolete?
+  (declare (obsolete substring "29.1"))
   (if (null end) (substring string 0 start)
     (concat (substring string 0 start)
            (substring string end nil))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]