Move lexical binding to top of output
This commit is contained in:
parent
9a4067a8c6
commit
49af8ba479
1 changed files with 9 additions and 9 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue