]> code.delx.au - gnu-emacs/blobdiff - modules/modhelp.py
* test/lisp/help-fns-tests.el: Add several tests for 'describe-function'.
[gnu-emacs] / modules / modhelp.py
index 45b849ee7475e6fa15f2bfb54d2b27ccc5a2a6b0..5d8f89b31bc1f0f4bd40137eca817b656d9093e2 100755 (executable)
@@ -2,7 +2,7 @@
 
 # Module helper script.
 
-# Copyright 2015 Free Software Foundation, Inc.
+# Copyright 2015-2016 Free Software Foundation, Inc.
 
 # This file is part of GNU Emacs.
 
@@ -121,7 +121,7 @@ def main():
     initp = subp.add_parser('init', help='create a test module from a template')
     initp.add_argument('module', help='name of the new module')
     initp.add_argument('-f', '--fun', default='fun',
-                       help='overide name of the default function')
+                       help='override name of the default function')
     initp.set_defaults(func=cmd_init)
 
     args = mainp.parse_args()
@@ -149,7 +149,7 @@ all: ${module}.so ${module}.doc
 '''),
 
     string.Template('${c_file}'): string.Template('''
-#include <module.h>
+#include <emacs-module.h>
 
 int plugin_is_GPL_compatible;