Don't byte-compile doctor.el files

This commit is contained in:
Henrik Lissner 2018-03-20 21:19:37 -04:00
parent 4da4cbaa58
commit adef00aa7c
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
7 changed files with 14 additions and 7 deletions

View file

@ -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"))))

View file

@ -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"))

View file

@ -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"))

View file

@ -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")

View file

@ -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

View file

@ -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

View file

@ -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))