Don't byte-compile doctor.el files
This commit is contained in:
parent
4da4cbaa58
commit
adef00aa7c
7 changed files with 14 additions and 7 deletions
|
@ -1,4 +1,5 @@
|
||||||
;;; lang/cc/doctor.el -*- lexical-binding: t; -*-
|
;; -*- lexical-binding: t; no-byte-compile: t; -*-
|
||||||
|
;;; lang/cc/doctor.el
|
||||||
|
|
||||||
;; rtags
|
;; rtags
|
||||||
(let ((bins (cl-remove-if #'executable-find '("rdm" "rc"))))
|
(let ((bins (cl-remove-if #'executable-find '("rdm" "rc"))))
|
||||||
|
|
|
@ -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")
|
(unless (executable-find "icr")
|
||||||
(warn! "Couldn't find icr. REPL will not work"))
|
(warn! "Couldn't find icr. REPL will not work"))
|
||||||
|
|
|
@ -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")
|
(unless (executable-find "guru")
|
||||||
(warn! "Couldn't find guru. Refactoring commands (go-guru-*) won't work"))
|
(warn! "Couldn't find guru. Refactoring commands (go-guru-*) won't work"))
|
||||||
|
|
|
@ -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)
|
(when (featurep! +dante)
|
||||||
(unless (executable-find "cabal")
|
(unless (executable-find "cabal")
|
||||||
|
|
|
@ -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)
|
(when (require 'plantuml-mode nil t)
|
||||||
;; java
|
;; java
|
||||||
|
|
|
@ -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)
|
(when (require 'racer nil t)
|
||||||
;; racer
|
;; racer
|
||||||
|
|
|
@ -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")
|
(when (version< emacs-version "26")
|
||||||
(error! "This module doesn't work in Emacs %s (minimum: Emacs 26)" emacs-version))
|
(error! "This module doesn't work in Emacs %s (minimum: Emacs 26)" emacs-version))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue