From 8c726e0beda92f9b311cdce5eb63e0ae2367ab69 Mon Sep 17 00:00:00 2001 From: Evan Dale Aromin Date: Sat, 27 Sep 2014 23:10:17 +0800 Subject: Fix flycheck warnings. --- evil-org.el | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/evil-org.el b/evil-org.el index 9180645..f5d1a14 100644 --- a/evil-org.el +++ b/evil-org.el @@ -24,9 +24,12 @@ ;; You should have received a copy of the GNU General Public License ;; along with this program. If not, see . +;;; Commentary: +;; ;; Known Bugs: ;; See, https://github.com/edwtjo/evil-org-mode/issues - +;; +;;; Code: (require 'evil) (require 'org) @@ -40,14 +43,15 @@ (add-hook 'org-mode-hook 'evil-org-mode) ;; only load with org-mode (defun clever-insert-item () - "Clever insertion of org item" + "Clever insertion of org item." (if (not (org-in-item-p)) (insert "\n") (org-insert-item)) ) (defun evil-org-eol-call (fun) - "Go to end of line and call provided function" + "Go to end of line and call provided function. +FUN function callback" (end-of-line) (funcall fun) (evil-append nil) -- cgit v1.0