1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-06 09:01:13 +02:00

28761: file completion for sccs

This commit is contained in:
Peter Stephenson 2011-02-17 19:54:06 +00:00
parent 3a23e82941
commit 6be3fe2fca
2 changed files with 7 additions and 2 deletions

View file

@ -1,5 +1,8 @@
2011-02-17 Peter Stephenson <p.w.stephenson@ntlworld.com> 2011-02-17 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 28761: Completion/Unix/Command/_sccs: file completion missing
for some commands.
* 28762: Src/exec.c: logic for closing coproc file descriptors * 28762: Src/exec.c: logic for closing coproc file descriptors
was wrong. was wrong.
@ -14212,5 +14215,5 @@
***************************************************** *****************************************************
* This is used by the shell to define $ZSH_PATCHLEVEL * This is used by the shell to define $ZSH_PATCHLEVEL
* $Revision: 1.5199 $ * $Revision: 1.5200 $
***************************************************** *****************************************************

View file

@ -109,7 +109,9 @@ case $service in
sact|print) _sccs_files;; sact|print) _sccs_files;;
create|enter) _files;; create|enter) _files;;
deledit|delget|delta) deledit|delget|delta)
_arguments '-s[silent]' '-y+[specify delta commentary]:comment' _arguments "$sfiles" \
'-s[silent]' \
'-y+[specify delta commentary]:comment' \
;; ;;
diffs) diffs)
_diff_options diff "$sfiles" "$ropt" "$copt" \ _diff_options diff "$sfiles" "$ropt" "$copt" \