Skip to content

Commit 30b5878

Browse files
committed
fix: typo in function name
1 parent dd72104 commit 30b5878

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lisp/core/compile.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
(eask-print-log-buffer))
5050
(eask-msg ""))))
5151

52-
(defun eask-compile--byte-compile-file-external-contetnt (filename cmd)
52+
(defun eask-compile--byte-compile-file-external-content (filename cmd)
5353
"Extract result after executing byte-compile the FILENAME.
5454
5555
The CMD is the command to start a new Emacs session."
@@ -82,7 +82,7 @@ The CMD is the command to start a new Emacs session."
8282
(args (append `(,(eask-command) ,(concat "\"" filename "\"")) argv))
8383
(args (mapconcat #'identity args " "))
8484
(cmd (concat cmd " " args))
85-
(content (eask-compile--byte-compile-file-external-contetnt filename cmd)))
85+
(content (eask-compile--byte-compile-file-external-content filename cmd)))
8686
(if (string-empty-p content)
8787
t ; no error, good!
8888
(with-current-buffer (get-buffer-create eask-compile--log-buffer-name)

0 commit comments

Comments
 (0)