branch: elpa/evil-numbers
commit 819530cefa4f97e51f45d10603c64836eb9fd7fa
Author: Campbell Barton <[email protected]>
Commit: Campbell Barton <[email protected]>

    Cleanup: use xdigit for matching hexidecimal
---
 evil-numbers.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/evil-numbers.el b/evil-numbers.el
index 22a3bab989..ab7b7c9e40 100644
--- a/evil-numbers.el
+++ b/evil-numbers.el
@@ -339,7 +339,7 @@ note that searching still starts at POINT."
                    (and "0"
                         (or (and (in "bB") (*? (in "01")))
                             (and (in "oO") (*? (in "0-7")))
-                            (and (in "xX") (*? (in digit "A-Fa-f")))))))
+                            (and (in "xX") (*? (in xdigit)))))))
            beg)))
    ;; Search for number in rest of line match 0 of specifier or digit,
    ;; being in a literal and after specifier is handled above.

Reply via email to