[Vim-latex-cvs] vimfiles/ftplugin/latex-suite main.vim,1.6,1.7
Brought to you by:
srinathava,
tmaas
From: <sri...@us...> - 2002-11-12 18:54:56
|
Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite In directory usw-pr-cvs1:/tmp/cvs-serv22754 Modified Files: main.vim Log Message: Always source texrc whether or not user texrc exists. This is because the user texrc could be from an older version where not all variables are defined. All the other files depend on the variables existing. Index: main.vim =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/main.vim,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** main.vim 8 Nov 2002 18:02:11 -0000 1.6 --- main.vim 12 Nov 2002 18:54:53 -0000 1.7 *************** *** 4,8 **** " Email: sr...@fa... " URL: ! " Last Change: Thu Nov 07 06:00 PM 2002 PST " " Help: --- 4,8 ---- " Email: sr...@fa... " URL: ! " Last Change: Mon Nov 11 09:00 PM 2002 PST " " Help: *************** *** 55,62 **** if filereadable(s:up_path.'/tex/texrc') exe "so ".s:up_path.'/tex/texrc' - else - " set up global defaults. - exe "so ".s:path.'/texrc' endif " }}} --- 55,61 ---- if filereadable(s:up_path.'/tex/texrc') exe "so ".s:up_path.'/tex/texrc' endif + " set up global defaults. + exe "so ".s:path.'/texrc' " }}} |