Skip to content

Instantly share code, notes, and snippets.

@clemera
Created September 11, 2019 07:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save clemera/24de662f04797041927608b83596e5be to your computer and use it in GitHub Desktop.
Save clemera/24de662f04797041927608b83596e5be to your computer and use it in GitHub Desktop.
(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