diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Completion/Unix/Type/_pids | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 9abc510ec..efc7004a8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2011-05-12 Mikael Magnusson <mikachu@gmail.com> + * 29205: Completion/Unix/Type/_pids: don't sort processes. + +2011-05-12 Mikael Magnusson <mikachu@gmail.com> + * 29208: Src/Zle/zle_move.c: make vimatchbracket check the character left of the cursor when at the end of the line. @@ -14660,5 +14664,5 @@ ***************************************************** * This is used by the shell to define $ZSH_PATCHLEVEL -* $Revision: 1.5292 $ +* $Revision: 1.5293 $ ***************************************************** diff --git a/Completion/Unix/Type/_pids b/Completion/Unix/Type/_pids index ea5ed79ee..3f99dfdf0 100644 --- a/Completion/Unix/Type/_pids +++ b/Completion/Unix/Type/_pids @@ -37,7 +37,7 @@ else desc=() fi -_wanted processes expl 'process ID' \ +_wanted -V processes expl 'process ID' \ compadd "$@" "$desc[@]" "$all[@]" -a - pids && ret=0 if [[ -n "$all" ]]; then |