emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[nongnu] elpa/julia-mode 5370850474 2/3: Use rx compatible with emacs v2


From: ELPA Syncer
Subject: [nongnu] elpa/julia-mode 5370850474 2/3: Use rx compatible with emacs v26
Date: Wed, 12 Jul 2023 13:00:09 -0400 (EDT)

branch: elpa/julia-mode
commit 5370850474151c39787a96c0a14bfc59d29b3774
Author: Adam B <adam_gpg@thebeckmeyers.xyz>
Commit: GitHub <noreply@github.com>

    Use rx compatible with emacs v26
    
    Co-authored-by: Tamas K. Papp <tkpapp@gmail.com>
---
 julia-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/julia-mode.el b/julia-mode.el
index 305c16e6a2..7e65daa096 100644
--- a/julia-mode.el
+++ b/julia-mode.el
@@ -291,7 +291,7 @@ partial match for LaTeX completion, or `nil' when not 
applicable."
 (defconst julia-const-def-regex
   (rx
    symbol-start "const" (1+ space)
-   (group (minimal-match (seq symbol-start (one-or-more anychar) symbol-end)))
+   (group (minimal-match (seq symbol-start (one-or-more anything) symbol-end)))
    (zero-or-more space)
    "="))
 



reply via email to

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