fix(syntax): s/connetion/connection

Also rework docstring and s/too/to
This commit is contained in:
Jeetaditya Chatterjee 2023-09-10 23:32:26 +01:00
parent e976351424
commit c37f314f14
No known key found for this signature in database
GPG key ID: 4A1E5568BA34D124

View file

@ -280,10 +280,10 @@ https://emacs.stackexchange.com/questions/10230/how-to-indent-keywords-aligned"
(defvar-local +emacs-lisp-reduced-flymake-byte-compile--process nil) (defvar-local +emacs-lisp-reduced-flymake-byte-compile--process nil)
(defun +emacs-lisp-reduced-flymake-byte-compile (report-fn &rest _args) (defun +emacs-lisp-reduced-flymake-byte-compile (report-fn &rest _args)
"A Flymake backend for warnings from the elisp byte compiler "A Flymake backend for byte compilation in non-package elisp files.
This checker reduces the amount of false positives the byte compiler throws off This checker reduces the amount of false positives the byte compiler throws off
compared too `elisp-flymake-byte-compile'. The linter warnings that are enabled compared to `elisp-flymake-byte-compile'. The linter warnings that are enabled
are set by `+emacs-lisp-linter-warnings' are set by `+emacs-lisp-linter-warnings'
This backend does not need to be added directly This backend does not need to be added directly
@ -304,7 +304,7 @@ as `+emacs-lisp-non-package-mode' will enable it and disable the other checkers.
(make-process (make-process
:name "+emacs-reduced-flymake" :name "+emacs-reduced-flymake"
:noquery t :noquery t
:connetion-type 'pipe :connection-type 'pipe
:buffer out-buf :buffer out-buf
:command `(,(expand-file-name invocation-name invocation-directory) :command `(,(expand-file-name invocation-name invocation-directory)
"-Q" "-Q"
@ -313,8 +313,7 @@ as `+emacs-lisp-non-package-mode' will enable it and disable the other checkers.
;; this is what silences the byte compiler ;; this is what silences the byte compiler
"--eval" ,(prin1-to-string `(setq doom-modules ',doom-modules "--eval" ,(prin1-to-string `(setq doom-modules ',doom-modules
doom-disabled-packages ',doom-disabled-packages doom-disabled-packages ',doom-disabled-packages
byte-compile-warnings ',+emacs-lisp-linter-warnings) byte-compile-warnings ',+emacs-lisp-linter-warnings))
)
"-f" "elisp-flymake--batch-compile-for-flymake" "-f" "elisp-flymake--batch-compile-for-flymake"
,tmp-file) ,tmp-file)
:stderr "*stderr of +elisp-flymake-byte-compile-out*" :stderr "*stderr of +elisp-flymake-byte-compile-out*"