Back compatibility.
authorIain Patterson <me@iain.cx>
Thu, 21 May 2009 14:16:29 +0000 (15:16 +0100)
committerIain Patterson <me@iain.cx>
Thu, 21 May 2009 15:50:37 +0000 (16:50 +0100)
commit3c2f9e59a2f2d1297ac9d05aa9c64a78d8c554e8
treef2a88fe19314540514949613ebbf2fbeb1c7d7f0
parent2a3015e18dd1c2057f61d58011badd4e5a6add62
Back compatibility.

Tab line functions were enclosed in a conditional block for version >=
"700" as they are not available before Vim 7.  Earlier versions still
parse them, however.  Vim 6 was reading the functions in, barfing on the
:for/:endfor blocks and spitting out an error about :return not inside a
function later on.

For Vim 6 the return WASN'T inside a function because the function
wasn't defined.

As a workaround all :for/:endfor blocks have been replaced with
:while/:endwhile blocks.  Vim 6 is now happy.
.vimrc