diff options
author | Clint Adams <clint@users.sourceforge.net> | 2004-09-28 17:48:46 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2004-09-28 17:48:46 +0000 |
commit | 988948f2a831a47361250ba74d22203947966e76 (patch) | |
tree | 15021596ac0d1a659ce33790ac8a3fff88bad534 /Completion/Unix | |
parent | 1199a033489427afe57f95d7b86438da73587904 (diff) | |
download | zsh-988948f2a831a47361250ba74d22203947966e76.tar.gz zsh-988948f2a831a47361250ba74d22203947966e76.tar.xz zsh-988948f2a831a47361250ba74d22203947966e76.zip |
20414: Completion/Unix/Type/_diff_options: correct missing minus in --unified, spotted by Paul Wagland.
Diffstat (limited to 'Completion/Unix')
-rw-r--r-- | Completion/Unix/Type/_diff_options | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Type/_diff_options b/Completion/Unix/Type/_diff_options index 7a81f7848..a83042e88 100644 --- a/Completion/Unix/Type/_diff_options +++ b/Completion/Unix/Type/_diff_options @@ -55,7 +55,7 @@ if _pick_variant -c $cmd gnu=GNU unix -v; then '(-a --text)'{-a,--text}'[treat all files as text]' \ "($of $oss)"{-C+,--context=-}'[output a context diff]:number of lines of copied context' \ "($of $oss)-c[output a context diff]" \ - "($of $oss)"{-U+,-unified=-}'[output a unified diff]:number of lines of unified context' \ + "($of $oss)"{-U+,--unified=-}'[output a unified diff]:number of lines of unified context' \ "($of $oss)-u[output a unified diff]" \ "($ofwuc $oss)*"{-L+,--label=}'[set label to use instead of file name]:label' \ "($ofwuc $oss -p --show-c-function)"{-p,--show-c-function}'[show C function of each change]' \ |