Commit 0e9721fd9d75
emacs.org
@@ -145,6 +145,9 @@
to have the same configuration in ~init.el~ for a little bit of time.
#+begin_src emacs-lisp :tangle init.el
+ ;;; -*- lexical-binding: t; -*-
+ (defconst emacs-start-time (current-time))
+
(when (< emacs-major-version 27)
(setq package-enable-at-startup nil)
@@ -206,8 +209,6 @@
:END:
#+begin_src emacs-lisp :tangle init.el
- ;;; -*- lexical-binding: t; -*-
- (defconst emacs-start-time (current-time))
(defvar file-name-handler-alist-old file-name-handler-alist)
(setq file-name-handler-alist nil
init.el
@@ -1,3 +1,6 @@
+;;; -*- lexical-binding: t; -*-
+(defconst emacs-start-time (current-time))
+
(when (< emacs-major-version 27)
(setq package-enable-at-startup nil)
@@ -17,8 +20,6 @@
gc-cons-percentage 0.1)
(garbage-collect)) t))
-;;; -*- lexical-binding: t; -*-
-(defconst emacs-start-time (current-time))
(defvar file-name-handler-alist-old file-name-handler-alist)
(setq file-name-handler-alist nil