all repos — archive/dotfiles @ 5b20693bf72a419d1b526dcf53f8610fba7a39e0

Superseded by nixfiles

Emacs: Add with-eval-after-load fallback implementation
Alan Pearce alan@alanpearce.uk
Sun, 09 Apr 2017 10:31:55 +0200
commit

5b20693bf72a419d1b526dcf53f8610fba7a39e0

parent

da106a2392ebebb3cefb425d3f3ba9285a5e647d

1 files changed, 8 insertions(+), 0 deletions(-)

jump to
M emacs/.emacs.d/init.orgemacs/.emacs.d/init.org
@@ -18,6 +18,14 @@ (setq file-name-handler-alist nil) (remove-hook 'find-file-hooks #'vc-refresh-state)
 #+END_SRC
 
+** Compatibility
+
+#+BEGIN_SRC emacs-lisp
+(if (version< emacs-version "25.0")
+    (defmacro with-eval-after-load (file &rest body)
+      `(eval-after-load ,file (lambda () ,@body))))
+#+END_SRC
+
 ** Scratch buffers
 I usually use scratch buffers for any sort of text.  If I need a
 programming mode in one, then I’ll just call it manually.  I also like