From 61b799d0620fbf293107ba602c39f45c2031768a Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 13 Mar 2023 12:50:31 -0400 Subject: [PATCH] fix: s/permanant-local/permanent-local Fix: #7123 Amend: 8d578cad76bf --- lisp/doom-start.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/doom-start.el b/lisp/doom-start.el index 4702a1048..53504d5fc 100644 --- a/lisp/doom-start.el +++ b/lisp/doom-start.el @@ -8,19 +8,19 @@ (defcustom doom-first-input-hook () "Transient hooks run before the first user input." :type 'hook - :local 'permanant-local + :local 'permanent-local :group 'doom) (defcustom doom-first-file-hook () "Transient hooks run before the first interactively opened file." :type 'hook - :local 'permanant-local + :local 'permanent-local :group 'doom) (defcustom doom-first-buffer-hook () "Transient hooks run before the first interactively opened buffer." :type 'hook - :local 'permanant-local + :local 'permanent-local :group 'doom)