]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't error when turning on Flymake with no known backends
authorJoão Távora <joaotavora@gmail.com>
Thu, 5 Oct 2017 23:07:53 +0000 (00:07 +0100)
committerJoão Távora <joaotavora@gmail.com>
Thu, 5 Oct 2017 23:07:53 +0000 (00:07 +0100)
Leave it to the mode line indicator to inform the user that there
is still some configuration to do.

* lisp/progmodes/flymake.el (flymake-mode): Simplify.

lisp/progmodes/flymake.el

index f61face25bf9bccc1e7b2c278a6a8be2efaf5721..ebd5a1ecee93eaf1815ea68d99c8eb3e3b4ad2d1 100644 (file)
@@ -708,18 +708,14 @@ Interactively, with a prefix arg, FORCE is t."
   (cond
    ;; Turning the mode ON.
    (flymake-mode
-    (cond
-     ((not flymake-diagnostic-functions)
-      (flymake-error "No backends to check buffer %s" (buffer-name)))
-     (t
-      (add-hook 'after-change-functions 'flymake-after-change-function nil t)
-      (add-hook 'after-save-hook 'flymake-after-save-hook nil t)
-      (add-hook 'kill-buffer-hook 'flymake-kill-buffer-hook nil t)
-
-      (setq flymake--backend-state (make-hash-table))
-
-      (when flymake-start-syntax-check-on-find-file
-        (flymake-start)))))
+    (add-hook 'after-change-functions 'flymake-after-change-function nil t)
+    (add-hook 'after-save-hook 'flymake-after-save-hook nil t)
+    (add-hook 'kill-buffer-hook 'flymake-kill-buffer-hook nil t)
+
+    (setq flymake--backend-state (make-hash-table))
+
+    (when flymake-start-syntax-check-on-find-file
+      (flymake-start)))
 
    ;; Turning the mode OFF.
    (t