1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-23 04:30:24 +02:00

zsh-3.1.6-bart-7

This commit is contained in:
Tanaka Akira 1999-10-17 04:52:56 +00:00
parent bf23cb8fe7
commit 6014bbdb45
26 changed files with 471 additions and 164 deletions

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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>)(