]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix a few minor compilation and Checkdoc warnings.
authorPhilipp Stephani <phst@google.com>
Sun, 28 Apr 2019 15:15:04 +0000 (17:15 +0200)
committerPhilipp Stephani <phst@google.com>
Sun, 28 Apr 2019 15:15:44 +0000 (17:15 +0200)
* test/src/emacs-module-tests.el: Add package name and standard
sections.
(multiply-string): Add a docstring.

test/src/emacs-module-tests.el

index 40afd76259c3f49396c9d614c53d673afed881bd..51330e305f6da9a571224c1e95e31140b2f23851 100644 (file)
@@ -1,4 +1,4 @@
-;;; Test GNU Emacs modules.  -*- lexical-binding: t; -*-
+;;; emacs-module-tests --- Test GNU Emacs modules.  -*- lexical-binding: t; -*-
 
 ;; Copyright 2015-2019 Free Software Foundation, Inc.
 
 ;; You should have received a copy of the GNU General Public License
 ;; along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 
+;;; Commentary:
+
+;; Unit tests for the dynamic module facility.  See Info node `(elisp)
+;; Writing Dynamic Modules'.  These tests make use of a small test
+;; module in test/data/emacs-module.
+
+;;; Code:
+
 (require 'cl-lib)
 (require 'ert)
 (require 'help-fns)
@@ -137,6 +145,7 @@ changes."
 ;;
 
 (defun multiply-string (s n)
+  "Return N copies of S concatenated together."
   (let ((res ""))
     (dotimes (i n)
       (setq res (concat res s)))