diff --git a/modules/lang/cc/doctor.el b/modules/lang/cc/doctor.el index da32879f9..442798ce4 100644 --- a/modules/lang/cc/doctor.el +++ b/modules/lang/cc/doctor.el @@ -1,4 +1,5 @@ -;;; lang/cc/doctor.el -*- lexical-binding: t; -*- +;; -*- lexical-binding: t; no-byte-compile: t; -*- +;;; lang/cc/doctor.el ;; rtags (let ((bins (cl-remove-if #'executable-find '("rdm" "rc")))) diff --git a/modules/lang/crystal/doctor.el b/modules/lang/crystal/doctor.el index 63752faef..b2f68f86e 100644 --- a/modules/lang/crystal/doctor.el +++ b/modules/lang/crystal/doctor.el @@ -1,4 +1,5 @@ -;;; lang/crystal/doctor.el -*- lexical-binding: t; -*- +;; -*- lexical-binding: t; no-byte-compile: t; -*- +;;; lang/crystal/doctor.el (unless (executable-find "icr") (warn! "Couldn't find icr. REPL will not work")) diff --git a/modules/lang/go/doctor.el b/modules/lang/go/doctor.el index fe059a4ae..cf47a544d 100644 --- a/modules/lang/go/doctor.el +++ b/modules/lang/go/doctor.el @@ -1,4 +1,5 @@ -;;; lang/go/doctor.el -*- lexical-binding: t; -*- +;; -*- lexical-binding: t; no-byte-compile: t; -*- +;;; lang/go/doctor.el (unless (executable-find "guru") (warn! "Couldn't find guru. Refactoring commands (go-guru-*) won't work")) diff --git a/modules/lang/haskell/doctor.el b/modules/lang/haskell/doctor.el index e6a8b92d6..f803ea3d2 100644 --- a/modules/lang/haskell/doctor.el +++ b/modules/lang/haskell/doctor.el @@ -1,4 +1,5 @@ -;;; lang/haskell/doctor.el -*- lexical-binding: t; -*- +;; -*- lexical-binding: t; no-byte-compile: t; -*- +;;; lang/haskell/doctor.el (when (featurep! +dante) (unless (executable-find "cabal") diff --git a/modules/lang/plantuml/doctor.el b/modules/lang/plantuml/doctor.el index be8cffde6..3d3174e25 100644 --- a/modules/lang/plantuml/doctor.el +++ b/modules/lang/plantuml/doctor.el @@ -1,4 +1,5 @@ -;;; lang/plantuml/doctor.el -*- lexical-binding: t; -*- +;; -*- lexical-binding: t; no-byte-compile: t; -*- +;;; lang/plantuml/doctor.el (when (require 'plantuml-mode nil t) ;; java diff --git a/modules/lang/rust/doctor.el b/modules/lang/rust/doctor.el index db9d287d0..79ef3dadb 100644 --- a/modules/lang/rust/doctor.el +++ b/modules/lang/rust/doctor.el @@ -1,4 +1,5 @@ -;;; lang/rust/doctor.el -*- lexical-binding: t; -*- +;; -*- lexical-binding: t; no-byte-compile: t; -*- +;;; lang/rust/doctor.el (when (require 'racer nil t) ;; racer diff --git a/modules/ui/posframe/doctor.el b/modules/ui/posframe/doctor.el index 0eb5dfb80..76c09d484 100644 --- a/modules/ui/posframe/doctor.el +++ b/modules/ui/posframe/doctor.el @@ -1,4 +1,5 @@ -;;; ui/posframe/doctor.el -*- lexical-binding: t; -*- +;; -*- lexical-binding: t; no-byte-compile: t; -*- +;;; ui/posframe/doctor.el (when (version< emacs-version "26") (error! "This module doesn't work in Emacs %s (minimum: Emacs 26)" emacs-version))