about summary refs log tree commit diff
path: root/Etc
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2007-05-29 17:01:07 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2007-05-29 17:01:07 +0000
commit6ab77f00ff8c4a30bf663f6e4ee39b9b23d3ef32 (patch)
tree2a64c4f75861838773bc4a9410f33c488bb4aa89 /Etc
parent52e5a75a7a8a4a16579e708a006f6346ce765aeb (diff)
downloadzsh-6ab77f00ff8c4a30bf663f6e4ee39b9b23d3ef32.tar.gz
zsh-6ab77f00ff8c4a30bf663f6e4ee39b9b23d3ef32.tar.xz
zsh-6ab77f00ff8c4a30bf663f6e4ee39b9b23d3ef32.zip
23488: tidy up module interface and documentation
Diffstat (limited to 'Etc')
-rw-r--r--Etc/zsh-development-guide17
1 files changed, 10 insertions, 7 deletions
diff --git a/Etc/zsh-development-guide b/Etc/zsh-development-guide
index 6e29ed842..cb645d416 100644
--- a/Etc/zsh-development-guide
+++ b/Etc/zsh-development-guide
@@ -229,7 +229,8 @@ the module's feature strctures for all standard features; space
 is left for abstract features at the end of the array and the names
 must be added by the module.  Note that heap memory should
 be used for this (zhalloc, etc.) as memory for the features array is not
-freed.
+freed; note also the pointers for the abstract features are not
+initialised so setting them is mandatory any time there are any present.
 
 A structure "struct features" should
 be used to contain all standard features as well as the number of
@@ -242,12 +243,14 @@ should be set to an array of the same length as *featuresp without the
 NULL, containing a 1 for every feature that is enabled and a zero for other
 feature.  By default features are disabled.  If *enablesp is not NULL, its
 values should be used to decide whether features are to be turned off.  It
-should return status 0 for success, 1 on a failure to alter a feature.
-The function handlefeatures() conveniently handles all standard features
-present in the module's features structure; abstract features must
-be handled by the module.  As with features_, any handling of the
-array by the module itself should take into account that the array
-will not be freed and any allocation should therefore be from heap memory.
+should return status 0 for success, 1 on a failure to alter a feature.  The
+function handlefeatures() conveniently handles all standard features
+present in the module's features structure; abstract features must be
+handled by the module (as with the features array, the area of the enables
+array for abstract features is not even initialised by the main shell).  As
+with features_, any handling of the array by the module itself should take
+into account that the array will not be freed and any allocation should
+therefore be from heap memory.
 
 The functions features_ and enables_ can be called at any point
 after setup_ has been called and before cleanup_ is called.  In