diff options
author | Case Duckworth | 2021-02-16 14:41:10 -0600 |
---|---|---|
committer | Case Duckworth | 2021-02-16 14:41:10 -0600 |
commit | 97a057ea582e8f77b7824e0b6ce14bec3e0b2566 (patch) | |
tree | 3fa2cf99ba2eee2c6496bd513c350e720db6cd22 | |
parent | Add feed (diff) | |
download | emacs-97a057ea582e8f77b7824e0b6ce14bec3e0b2566.tar.gz emacs-97a057ea582e8f77b7824e0b6ce14bec3e0b2566.zip |
Add coding to {early-,}init.el
-rw-r--r-- | config.org | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config.org b/config.org index ea9b58d..51a2496 100644 --- a/config.org +++ b/config.org | |||
@@ -3429,7 +3429,7 @@ The classic Emacs initiation file. | |||
3429 | *** Header | 3429 | *** Header |
3430 | 3430 | ||
3431 | #+begin_src emacs-lisp | 3431 | #+begin_src emacs-lisp |
3432 | ;;; init.el -*- lexical-binding: t -*- | 3432 | ;;; init.el -*- lexical-binding: t; coding: utf-8 -*- |
3433 | <<disclaimer>> | 3433 | <<disclaimer>> |
3434 | ;;; Code: | 3434 | ;;; Code: |
3435 | #+end_src | 3435 | #+end_src |
@@ -3491,7 +3491,7 @@ the package manager or the UI code. The Info says we should put as | |||
3491 | little as possible in this file, so I only have what I need. | 3491 | little as possible in this file, so I only have what I need. |
3492 | 3492 | ||
3493 | #+begin_src emacs-lisp | 3493 | #+begin_src emacs-lisp |
3494 | ;;; early-init.el -*- no-byte-compile: t; -*- | 3494 | ;;; early-init.el -*- no-byte-compile: t; coding: utf-8 -*- |
3495 | <<disclaimer>> | 3495 | <<disclaimer>> |
3496 | ;;; Code: | 3496 | ;;; Code: |
3497 | 3497 | ||