branch: elpa/idris-mode
commit ffe4bed686e8779377633823ec4fd2d137627e0a
Author: Marek L <[email protected]>
Commit: Marek L <[email protected]>
Replace obsolete rx `any` with `anychar`
Relates to:
https://github.com/emacs-mirror/emacs/commit/251c070dfde8996189bfb808a0b6f6f5925091b8
---
inferior-idris.el | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/inferior-idris.el b/inferior-idris.el
index adf3341112..efae6b1bf5 100644
--- a/inferior-idris.el
+++ b/inferior-idris.el
@@ -112,7 +112,7 @@ This is maintained to restart Idris when the arguments
change.")
(delete-process idris-process)
(setq idris-process nil)))
-(defvar idris-process-port-output-regexp (rx (? (group (+ any (not num))))
(group (+ (any num))))
+(defvar idris-process-port-output-regexp (rx (? (group (+ anychar (not num))))
(group (+ (any num))))
"Regexp used to match the port of an Idris process.")
(defvar idris-process-exact-port-output-regexp (rx bol (group (+ (any num)))
eol)
"Regexp to match port number.")
@@ -120,11 +120,11 @@ This is maintained to restart Idris when the arguments
change.")
"Port number matcher.")
(defvar idris-process-port-with-warning-output-regexp
- (rx (? (group (+ any (not num)))) (group (** 3 4 (any num)))))
-;; ^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^
-;; ^ ^
-;; | |
-;; | +---- port number
+ (rx (? (group (+ anychar (not num)))) (group (** 3 4 (any num)))))
+;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^
+;; ^ ^
+;; | |
+;; | +---- port number
;; +------------------------------- warning message
(defvar idris-warning-matcher 1
"Warning from Idris.")