emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/apache-mode db5ed28 04/23: Fix doc comments by checkdoc


From: ELPA Syncer
Subject: [nongnu] elpa/apache-mode db5ed28 04/23: Fix doc comments by checkdoc
Date: Sun, 29 Aug 2021 10:57:33 -0400 (EDT)

branch: elpa/apache-mode
commit db5ed28f38b0b62d10cff9d147c948435aa1c434
Author: USAMI Kenta <tadsan@zonu.me>
Commit: USAMI Kenta <tadsan@zonu.me>

    Fix doc comments by checkdoc
---
 apache-mode.el | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/apache-mode.el b/apache-mode.el
index 4579445..dbbbb04 100644
--- a/apache-mode.el
+++ b/apache-mode.el
@@ -56,7 +56,7 @@
 (require 'regexp-opt)
 
 (defvar apache-indent-level 4
-  "*Number of spaces to indent per level")
+  "*Number of spaces to indent per level.")
 
 (defvar apache-mode-syntax-table
   (let ((table (make-syntax-table)))
@@ -794,8 +794,7 @@
 
 
 (defun apache-previous-indentation ()
-  ;; Return the previous (non-empty/comment) indentation.  Doesn't save
-  ;; position.
+  "Return the previous (non-empty/comment) indentation.  Doesn't save 
position."
   (let (indent)
     (while (and (null indent)
                 (zerop (forward-line -1)))
@@ -804,7 +803,7 @@
     (or indent 0)))
 
 (defun apache-calculate-indentation ()
-  ;; Return the amount the current line should be indented.
+  "Return the amount the current line should be indented."
   (save-excursion
     (forward-line 0)
     (if (bobp)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]