Skip to content

Instantly share code, notes, and snippets.

@saevarb
Created June 8, 2015 11:36
Show Gist options
  • Save saevarb/be96b9482ea33c0cd018 to your computer and use it in GitHub Desktop.
Save saevarb/be96b9482ea33c0cd018 to your computer and use it in GitHub Desktop.
;; "after" macro definition
; (if (fboundp 'with-eval-after-load)
; (defmacro after (feature &rest; body)
; "After FEATURE is loaded, evaluate BODY."
; (declare (indent defun))
; `(with-eval-after-load ,feature ,@body))
; (defmacro after (feature &rest; body)
; "After FEATURE is loaded, evaluate BODY."
; (declare (indent defun))
; `(eval-after-load ,feature
; '(progn ,@body))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment