Skip to content

Instantly share code, notes, and snippets.

@pogin503
Last active February 2, 2016 14:17
Show Gist options
  • Save pogin503/8f4dbd747f641d20f3b6 to your computer and use it in GitHub Desktop.
Save pogin503/8f4dbd747f641d20f3b6 to your computer and use it in GitHub Desktop.
(let ((syms '()))
(mapatoms
(lambda (s)
(when (fboundp s)
(push s syms))))
syms)
;; => (desktop-save-in-desktop-dir gnus-score-mode cl--pass-args-to-cl-declare tabbar-mwheel-switch-tab palette-toggle-verbose eieio-default-eval-maybe haskell-doc-show-reserved ffap-guesser org-babel-pick-name org-move-item-down gnus-put-display-table paredit-enclosing-list-start ...)
;; @see http://lingr.com/room/emacs/archives/2016/01/30#message-22998637
(cl-loop for x being the symbols
when (fboundp x)
collect x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment