From 4f47064712e04712d282131973196aee7c8842b2 Mon Sep 17 00:00:00 2001 From: CrossNox Date: Tue, 29 Nov 2022 08:24:48 -0300 Subject: [PATCH] fix identificador? --- src/rustint/core.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rustint/core.clj b/src/rustint/core.clj index 319c54b..eab9352 100644 --- a/src/rustint/core.clj +++ b/src/rustint/core.clj @@ -2279,7 +2279,7 @@ (and (symbol? arg) (not (palabra-reservada? arg)) - (not (nil? (re-matches #"_?[a-zA-Z][a-zA-Z0-9]*" (name arg)))) + (not (nil? (re-matches #"_?[a-zA-Z][a-zA-Z0-9_]*" (name arg)))) ) )