Skip to content

Commit

Permalink
fix version check , float =
Browse files Browse the repository at this point in the history
  • Loading branch information
c9s committed Nov 7, 2009
1 parent 24da340 commit f550044
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vimlib/plugin/pod-search.vim
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ endf

" pod search window &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&

let s:podsrh = copy( swindow#class )

if s:podsrh.version < 0.4
if swindow#class.version < 0.5
echo "Please upgrade search-window.vim to version 0.4"
echo "Current version: v" . string(swindow#class.version)
echo "http://github.com/c9s/search-window.vim"
finish
endif

let s:podsrh = copy( swindow#class )
let s:podsrh.predefined_index = [ ]

fun! s:podsrh.index()
Expand Down

0 comments on commit f550044

Please sign in to comment.