From 49af8ba47924d4fdde3cf654f7a8d1258c401680 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Fri, 19 Dec 2014 22:13:56 +0100 Subject: Move lexical binding to top of output --- emacs/.emacs.d/init.org | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'emacs/.emacs.d/init.org') diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index 40c4812..0966f94 100644 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -51,6 +51,15 @@ You don't have to copy it if you copy anything from this file, as long as you do it consistently. +* Use lexical binding + + For some of these functions, and general coolness, lexical binding + is a must. Without it, closures cannot be made. + + #+BEGIN_SRC emacs-lisp :padline no + ;; -*- lexical-binding: t -*- + #+END_SRC + * Some general-purpose functions and macros A configuration as big as mine is bound to have some functions and @@ -106,15 +115,6 @@ `(add-hook 'emacs-startup-hook #'(lambda () ,@body))) #+END_SRC -* Use lexical binding - - For some of these functions, and general coolness, lexical binding - is a must. Without it, closures cannot be made. - - #+BEGIN_SRC emacs-lisp :padline no - ;; -*- lexical-binding: t -*- - #+END_SRC - * Set some personal information This information is used by some emacs commands and modules to make -- cgit v1.2.3-54-g00ecf