Skip to content

Commit

Permalink
- Fixed popen().
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed May 14, 2011
1 parent 555eb3a commit e97c38c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autoload/vimproc.vim
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
" FILE: vimproc.vim
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com> (Modified)
" Yukihiro Nakadaira <yukihiro.nakadaira at gmail.com> (Original)
" Last Modified: 13 May 2011.
" Last Modified: 14 May 2011.
" License: MIT license {{{
" Permission is hereby granted, free of charge, to any person obtaining
" a copy of this software and associated documentation files (the
Expand Down Expand Up @@ -331,7 +331,7 @@ function! vimproc#popen2(args)"{{{
return vimproc#parser#popen2(a:args)
endif

return s:popen(3, a:args)
return s:popen(2, a:args)
endfunction"}}}
function! vimproc#popen3(args)"{{{
if type(a:args) == type('')
Expand Down
3 changes: 3 additions & 0 deletions doc/vimproc.txt
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,9 @@ BUGS *vimproc-bugs*
==============================================================================
CHANGELOG *vimproc-changelog*

2011-05-14
- Fixed popen().

2011-05-13
- Added system_gui().
- Ver.5.2 development is started.
Expand Down

0 comments on commit e97c38c

Please sign in to comment.