Created
September 11, 2019 07:39
-
-
Save clemera/24de662f04797041927608b83596e5be to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(let ((single ())) | |
(mapatoms | |
(lambda (atom) | |
(when (and (boundp atom) | |
(not (keywordp atom)) | |
(not (cdr (split-string (symbol-name atom) "-" t)))) | |
(push atom single)))) | |
(cl-remove-if-not #'special-variable-p single)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment