Add after macro

This commit is contained in:
syl20bnr 2013-11-18 01:06:08 -05:00
parent 6c36e18ed5
commit cba91baa04

View file

@ -1,3 +1,9 @@
;; http://milkbox.net/note/single-file-master-emacs-configuration/
(defmacro after (mode &rest body)
"`eval-after-load' MODE evaluate BODY."
(declare (indent defun))
`(eval-after-load ,mode '(progn ,@body)))
;; Works only with selections from top to bottom
(fset 'mac-mc-edit-beginnings-of-lines-tb
(lambda (&optional arg)