summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2020-10-14 05:57:55 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2020-10-14 05:57:55 +0200
commite88d75a6b621418604d4e90c20a61ead37e34361 (patch)
treeba50ba740c325088a106cc2eec876b273d6dd76a
parenta8d810780092cecfbc30fdaeb433aee44ab9f67d (diff)
downloademacs-e88d75a6b621418604d4e90c20a61ead37e34361.tar.gz
emacs-e88d75a6b621418604d4e90c20a61ead37e34361.tar.bz2
emacs-e88d75a6b621418604d4e90c20a61ead37e34361.zip
Fix name of the module .h files in the comments
* src/emacs-module.c: Fix the name of the .h file in the comments.
-rw-r--r--src/emacs-module.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emacs-module.c b/src/emacs-module.c
index ba9de58de54..23b8e8620c9 100644
--- a/src/emacs-module.c
+++ b/src/emacs-module.c
@@ -41,7 +41,7 @@ rules:
module-env-VER.h. Add functions solely at the end of the fragment
file for the next (not yet released) major version of Emacs. For
example, if the current Emacs release is 26.2, add functions only to
- emacs-env-27.h.
+ module-env-27.h.
- emacs-module.h should only depend on standard C headers. In
particular, don't include config.h or lisp.h from emacs-module.h.
@@ -55,7 +55,7 @@ rules:
To add a new module function, proceed as follows:
-1. Add a new function pointer field at the end of the emacs-env-*.h
+1. Add a new function pointer field at the end of the module-env-*.h
file for the next major version of Emacs.
2. Run config.status or configure to regenerate emacs-module.h.