about summary refs log tree commit diff
path: root/Doc
diff options
context:
space:
mode:
Diffstat (limited to 'Doc')
-rw-r--r--Doc/Makefile.in6
-rw-r--r--Doc/Zsh/.distfiles6
-rw-r--r--Doc/Zsh/compsys.yo9
-rw-r--r--Doc/Zsh/options.yo8
4 files changed, 7 insertions, 22 deletions
diff --git a/Doc/Makefile.in b/Doc/Makefile.in
index 03ef6bbc0..6bf0c1cb2 100644
--- a/Doc/Makefile.in
+++ b/Doc/Makefile.in
@@ -81,10 +81,11 @@ zsh.texi: zsh.yo
 	test -f $(sdir)/zsh.texi
 
 .yo.1:
-	case $@ in \
+	@case $@ in \
 	  */*) target=$@ ;; \
 	  *) target=$(sdir)/$@ ;; \
 	esac; \
+	$(YODL) -o $$target -I$(sdir) -w zman.yo version.yo $< ; \
 	$(YODL) -I$(sdir) -w zman.yo version.yo $< | sed -e '1s/\\-/-/g' -e '/^\.'\''/d' > $$target || exit 1; \
 	test -f $$target
 
@@ -98,10 +99,11 @@ zsh_toc.html: zsh.texi
 	$(TEXI2HTML) $(sdir)/zsh.texi
 
 zshall.1: zsh.yo
-	case $@ in \
+	@case $@ in \
 	  */*) target=$@ ;; \
 	  *) target=$(sdir)/$@ ;; \
 	esac; \
+	echo $(YODL) -o $$target -I$(sdir) -DZSHALL -w zman.yo version.yo zsh.yo; \
 	$(YODL) -I$(sdir) -DZSHALL -w zman.yo version.yo zsh.yo | sed -e '1s/\\-/-/g' -e '/^\.'\''/d' > $$target || exit 1; \
 	test -f $$target
 
diff --git a/Doc/Zsh/.distfiles b/Doc/Zsh/.distfiles
index f534e834a..6c0938dd6 100644
--- a/Doc/Zsh/.distfiles
+++ b/Doc/Zsh/.distfiles
@@ -2,9 +2,9 @@ DISTFILES_SRC='
     .distfiles
     arith.yo builtins.yo compat.yo compctl.yo compsys.yo compwid.yo
     cond.yo exec.yo expn.yo filelist.yo files.yo func.yo grammar.yo
-    guide.yo index.yo intro.yo invoke.yo jobs.yo metafaq.yo
-    mod_cap.yo mod_clone.yo mod_comp1.yo mod_complist.yo
-    mod_compctl.yo mod_deltochar.yo mod_example.yo mod_files.yo
+    index.yo intro.yo invoke.yo jobs.yo manual.yo metafaq.yo
+    mod_cap.yo mod_clone.yo mod_comp1.yo mod_compctl.yo mod_complist.yo
+    mod_computil.yo mod_deltochar.yo mod_example.yo mod_files.yo
     mod_mapfile.yo mod_mathfunc.yo mod_parameter.yo mod_sched.yo
     mod_stat.yo mod_zftp.yo mod_zle.yo
     modules.yo options.yo params.yo 
diff --git a/Doc/Zsh/compsys.yo b/Doc/Zsh/compsys.yo
index fc8d70ff8..f57416e3a 100644
--- a/Doc/Zsh/compsys.yo
+++ b/Doc/Zsh/compsys.yo
@@ -1716,15 +1716,6 @@ This is used by functions that complete color names. It should be set
 to the pathname of a file containing color names in the format of an
 X11 tt(rgb.txt) file.
 )
-item(tt(history_list))(
-If this is set to a non-empty string, the tt(_history_complete_word)
-bindable command will list all available matches.
-)
-item(tt(history_remove_all_dups))(
-If this is set to a non-empty string, the tt(_history_complete_word)
-bindable command will remove all duplicate matches, rather than just
-removing consecutive duplicates.
-)
 item(tt(history_sort))(
 If this is set to a non-empty string, completion functions that
 generate words from the history as possible matches sort these words
diff --git a/Doc/Zsh/options.yo b/Doc/Zsh/options.yo
index 8892cfb8d..8d10bdbb3 100644
--- a/Doc/Zsh/options.yo
+++ b/Doc/Zsh/options.yo
@@ -1003,14 +1003,6 @@ has been executed.  This also makes the shell non-interactive, unless the
 tt(INTERACTIVE) option is explicitly set on the command line.
 The value of this option cannot be changed anywhere other than the command line.
 )
-pindex(SH_JOB_CONTROL)
-cindex(exiting, checking jobs when)
-cindex(logging out, checking jobs when)
-item(tt(SH_JOB_CONTROL) <C> <K> <S>)(
-Don't report the status of background and suspended jobs when exiting a
-shell with job control.  This is best used in combination with tt(NO_HUP),
-else such jobs will be killed automatically.
-)
 pindex(SINGLE_LINE_ZLE)
 cindex(editor, single line mode)
 item(tt(SINGLE_LINE_ZLE) (tt(-M)) <K>)(