branch: elpa/nix-mode
commit 1ebbd318d2551420544488d6103ccf421693596d
Author: Matthew Bauer <[email protected]>
Commit: Matthew Bauer <[email protected]>
Add some comments to nix-flycheck.el.
---
nix-flycheck.el | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/nix-flycheck.el b/nix-flycheck.el
index 1a61e5fd1e..37aa4d4321 100644
--- a/nix-flycheck.el
+++ b/nix-flycheck.el
@@ -1,4 +1,10 @@
-;;; Flycheck
+;;; nix-flycheck.el --- Flycheck support for Nix.
+
+;; This file is NOT part of GNU Emacs.
+
+;;; Commentary:
+
+;;; Code:
(require 'flycheck)
@@ -22,7 +28,7 @@
:checker checker
:buffer buffer)
errs))))
- errs)))
+ errs)))
(flycheck-def-args-var flycheck-nix-args (nix))
@@ -37,3 +43,4 @@
(add-to-list 'flycheck-checkers 'nix)
(provide 'nix-flycheck)
+;;; nix-flycheck.el ends here