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

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

[nongnu] elpa/parseclj 01608b7537 007/185: Seriously thinking of stickin


From: ELPA Syncer
Subject: [nongnu] elpa/parseclj 01608b7537 007/185: Seriously thinking of sticking to Emacs 25. This is getting ridiculous.
Date: Tue, 28 Dec 2021 14:05:08 -0500 (EST)

branch: elpa/parseclj
commit 01608b7537a8de710170940b2fcce5ebe0e5dea6
Author: Arne Brasseur <arne@arnebrasseur.net>
Commit: Arne Brasseur <arne@arnebrasseur.net>

    Seriously thinking of sticking to Emacs 25. This is getting ridiculous.
---
 clj-parse.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/clj-parse.el b/clj-parse.el
index cc70aeadd0..90bd181202 100644
--- a/clj-parse.el
+++ b/clj-parse.el
@@ -77,7 +77,7 @@
 (defun clj-lex-number ()
   (let* ((pos (point)))
     (while (and (char-after (point))
-                (or (<= ?0 (char-after (point)) ?9)
+                (or (and (<= ?0 (char-after (point))) (<= (char-after (point)) 
?9))
                     (eq (char-after (point)) ?.)
                     (eq (char-after (point)) ?M)
                     (eq (char-after (point)) ?r)))
@@ -110,7 +110,7 @@
         (right-char)
         `((type . :rparen) (pos . ,pos)))
 
-       ((<= ?0 char ?9)
+       ((and (<= ?0 char) (<= char ?9))
         (clj-lex-number))
 
        ":("))))



reply via email to

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