]> git.eshelyaron.com Git - emacs.git/commitdiff
improve comp-c-func-name
authorAndrea Corallo <andrea_corallo@yahoo.it>
Sun, 14 Jul 2019 19:10:56 +0000 (21:10 +0200)
committerAndrea Corallo <akrl@sdf.org>
Wed, 1 Jan 2020 10:33:54 +0000 (11:33 +0100)
lisp/emacs-lisp/comp.el

index 849b15f4225dfb89fb8753e9609a1797617365a5..116a1c24456741084c63966d438f3ceb3cffa3ba 100644 (file)
@@ -150,7 +150,7 @@ LIMPLE basic block.")
          (human-readable (replace-regexp-in-string
                           "-" "_" orig-name))
          (human-readable (replace-regexp-in-string
-                          (rx (not (any "a-z_"))) "" human-readable)))
+                          (rx (not (any "0-9a-z_"))) "" human-readable)))
     (concat "F" crypted "_" human-readable)))
 
 (defun comp-decrypt-lambda-list (x)