diff options
author | Jesús <heckyel@hyperbola.info> | 2019-01-21 19:16:49 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-01-21 19:16:49 -0500 |
commit | d0f44d85466d7211d54e30970f29815842ff4180 (patch) | |
tree | 66a6856db5c572a143333ae5e7d511a706a61725 /lisp | |
parent | 11ff66d88db4e699ebb75b7a181062fa70a733e7 (diff) | |
download | emacs-personal-d0f44d85466d7211d54e30970f29815842ff4180.tar.lz emacs-personal-d0f44d85466d7211d54e30970f29815842ff4180.tar.xz emacs-personal-d0f44d85466d7211d54e30970f29815842ff4180.zip |
fix validator flycheck on init-ccc FS #2
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/init-ccc.el | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lisp/init-ccc.el b/lisp/init-ccc.el index 5e0914d..6733f3e 100644 --- a/lisp/init-ccc.el +++ b/lisp/init-ccc.el @@ -1,3 +1,9 @@ +;;; init-ccc.el --- .Emacs Configuration -*- lexical-binding: t -*- +;;; Commentary: +;; + +;;; Code: + ;;---------------------------------------------------------------------------- ;; c++ Mode ;;---------------------------------------------------------------------------- @@ -12,3 +18,8 @@ (c-set-offset 'comment-intro 6) (provide 'init-ccc) + +;; Local Variables: +;; byte-compile-warnings: (not free-vars) +;; End: +;;; init-ccc.el ends here |