branch: externals/orderless
commit 306fb267f5dee9beb307b3a336111b9715acac67
Author: Omar Antolín <[email protected]>
Commit: Omar Antolín <[email protected]>
Mark orderless-temporarily-change-separator obsolete (#15)
---
orderless.el | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/orderless.el b/orderless.el
index 1297b6cf48..eacb0641a8 100644
--- a/orderless.el
+++ b/orderless.el
@@ -318,6 +318,8 @@ This function is part of the `orderless' completion style."
(defun orderless--restore-component-separator ()
"Restore old value of `orderless-component-separator'."
+ (declare (obsolete "See https://github.com/oantolin/orderless/issues/15"
+ "20200419"))
(when orderless-old-component-separator
(setq orderless-component-separator orderless-old-component-separator
orderless-old-component-separator nil))
@@ -325,6 +327,8 @@ This function is part of the `orderless' completion style."
(defun orderless-temporarily-change-separator (separator)
"Use SEPARATOR to split the input for the current completion session."
+ (declare (obsolete "See https://github.com/oantolin/orderless/issues/15"
+ "20200419"))
(interactive
(list (let ((enable-recursive-minibuffers t))
(read-string "Orderless regexp separator: "))))