summary refs log tree commit diff
path: root/Src/mkmakemod.sh
diff options
context:
space:
mode:
authorBarton E. Schaefer <schaefer@zsh.org>2015-09-27 12:43:25 -0700
committerBarton E. Schaefer <schaefer@zsh.org>2015-09-27 12:43:25 -0700
commit7e4784f90105a21af3f5e0a52aa8d2465919e635 (patch)
tree78e2198db715b50f85ca3160e3330c42ca2d8794 /Src/mkmakemod.sh
parentc2254cfe2c9b4bace38035ec95e4bad4ef46c9f5 (diff)
downloadzsh-7e4784f90105a21af3f5e0a52aa8d2465919e635.tar.gz
zsh-7e4784f90105a21af3f5e0a52aa8d2465919e635.tar.xz
zsh-7e4784f90105a21af3f5e0a52aa8d2465919e635.zip
36663: replace obsolete "autobins" commentary with "autofeatures"
Diffstat (limited to 'Src/mkmakemod.sh')
-rw-r--r--Src/mkmakemod.sh10
1 files changed, 3 insertions, 7 deletions
diff --git a/Src/mkmakemod.sh b/Src/mkmakemod.sh
index 002160910..3ccf9c5e5 100644
--- a/Src/mkmakemod.sh
+++ b/Src/mkmakemod.sh
@@ -21,12 +21,8 @@
 #   moddeps         modules on which this module depends (default none)
 #   nozshdep        non-empty indicates no dependence on the `zsh/main' pseudo-module
 #   alwayslink      if non-empty, always link the module into the executable
-#   autobins        builtins defined by the module, for autoloading
-#   autoinfixconds  infix condition codes defined by the module, for
-#                   autoloading (without the leading `-')
-#   autoprefixconds like autoinfixconds, but for prefix condition codes
-#   autoparams      parameters defined by the module, for autoloading
-#   automathfuncs   math functions defined by the module, for autoloading
+#   autofeatures    features defined by the module, for autoloading
+#   autofeatures_emu As autofeatures, but for non-zsh emulation modes
 #   objects         .o files making up this module (*must* be defined)
 #   proto           .syms files for this module (default generated from $objects)
 #   headers         extra headers for this module (default none)
@@ -189,7 +185,7 @@ if $first_stage; then
     for mddname in $here_mddnames; do
 
 	unset name moddeps nozshdep alwayslink hasexport
-	unset autobins autoinfixconds autoprefixconds autoparams automathfuncs
+	unset autofeatures autofeatures_emu
 	unset objects proto headers hdrdeps otherincs
 	. $top_srcdir/$the_subdir/${mddname}.mdd
 	q_name=`echo $name | sed 's,Q,Qq,g;s,_,Qu,g;s,/,Qs,g'`