[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/consult a593c4d20a 2/3: Improve obsoletion messages
From: |
ELPA Syncer |
Subject: |
[elpa] externals/consult a593c4d20a 2/3: Improve obsoletion messages |
Date: |
Sat, 4 Jan 2025 09:57:46 -0500 (EST) |
branch: externals/consult
commit a593c4d20a16576c1e26af8106b15e2af1369d9f
Author: Daniel Mendler <mail@daniel-mendler.de>
Commit: Daniel Mendler <mail@daniel-mendler.de>
Improve obsoletion messages
---
consult.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/consult.el b/consult.el
index 2ecf034687..73ba505304 100644
--- a/consult.el
+++ b/consult.el
@@ -2200,12 +2200,12 @@ ASYNC is the async sink. The messages are prefixed with
PREFIX."
(defun consult--async-split-initial (initial)
"Deprecated function, return INITIAL unchanged."
initial)
-(make-obsolete 'consult--async-split-initial "Not needed anymore." "1.9")
+(make-obsolete 'consult--async-split-initial "Not needed anymore, use INITIAL
string directly." "1.9")
(defun consult--async-split-thingatpt (thing)
"Deprecated function, return THING at point."
(thing-at-point thing))
-(make-obsolete 'consult--async-split-thingatpt "Not needed anymore." "1.9")
+(make-obsolete 'consult--async-split-thingatpt "Not needed anymore, use
`thing-at-point' instead." "1.9")
(defun consult--async-predicate (async pred)
"Create async function, running only if PRED is non-nil.