Skip to content

Commit 8e04552

Browse files
committed
fix(op): minor op
1 parent a8bfadb commit 8e04552

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lisp/_prepare.el

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ will return `lint-checkdoc' with a dash between two subcommands."
7171
(if (member module-name '("core")) script-file
7272
(concat module-name "-" script-file))))
7373

74-
(defun eask-sepcial-p ()
74+
(defun eask-special-p ()
7575
"Return t if the command that can be run without Eask-file existence."
7676
(member (eask-command) '("keywords")))
7777

@@ -224,7 +224,7 @@ the `eask-start' execution.")
224224
(eask-with-progress
225225
(ansi-green "Updating environment variables... ")
226226
(eask-with-verbosity 'debug
227-
;;(eask--update-exec-path) (eask--update-load-path)
227+
(eask--update-exec-path) (eask--update-load-path)
228228
(setenv "PATH" (string-join exec-path path-separator))
229229
(setenv "EMACSLOADPATH" (string-join load-path path-separator)))
230230
(ansi-green "done ✓")))
@@ -642,7 +642,7 @@ Eask file in the workspace."
642642
(eask--first-init-p (not (file-directory-p user-emacs-directory)))
643643
(user-init-file (locate-user-emacs-file "init.el"))
644644
(custom-file (locate-user-emacs-file "custom.el"))
645-
(special (eask-sepcial-p)))
645+
(special (eask-special-p)))
646646
(if (or (eask-file-try-load "../../")
647647
special)
648648
(progn

0 commit comments

Comments
 (0)