Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created January 5, 2014 18:55
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 ryantm/8272318 to your computer and use it in GitHub Desktop.
Save ryantm/8272318 to your computer and use it in GitHub Desktop.
Emacs safe Local variables
(let ((vars nil)) (mapatoms (lambda (atom) (when (get atom 'safe-local-variable) (push atom vars)))) vars)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment