aboutsummaryrefslogtreecommitdiffstats
path: root/doc/gawktexi.in
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2017-09-17 20:35:20 +0300
committerArnold D. Robbins <arnold@skeeve.com>2017-09-17 20:35:20 +0300
commitad01d9f1b9c0b686a850e789d51b76ecdc459497 (patch)
tree066165cd0cd3ec6b71be518e97acee4d560fc74d /doc/gawktexi.in
parent52a73873a93202b5193413e195ab625a950f33d4 (diff)
parentbbe9adae884c1c2cc7687c74b9d3722f1f7f61e7 (diff)
downloadegawk-ad01d9f1b9c0b686a850e789d51b76ecdc459497.tar.gz
egawk-ad01d9f1b9c0b686a850e789d51b76ecdc459497.tar.bz2
egawk-ad01d9f1b9c0b686a850e789d51b76ecdc459497.zip
Merge branch 'master' into feature/fix-comments
Diffstat (limited to 'doc/gawktexi.in')
-rw-r--r--doc/gawktexi.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/gawktexi.in b/doc/gawktexi.in
index 65d3cf44..46eed243 100644
--- a/doc/gawktexi.in
+++ b/doc/gawktexi.in
@@ -32293,9 +32293,9 @@ Once you have a record representing your extension function, you register
it with @command{gawk} using this API function:
@table @code
-@item awk_bool_t add_ext_func(const char *namespace, awk_ext_func_t *func);
+@item awk_bool_t add_ext_func(const char *name_space, awk_ext_func_t *func);
This function returns true upon success, false otherwise.
-The @code{namespace} parameter is currently not used; you should pass in an
+The @code{name_space} parameter is currently not used; you should pass in an
empty string (@code{""}). The @code{func} pointer is the address of a
@code{struct} representing your function, as just described.