Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite
In directory sc8-pr-cvs1:/tmp/cvs-serv30312
Modified Files:
texrc
Log Message:
Use the more standard TexLet way to set default options instead of exists()
and stuff.
Index: texrc
===================================================================
RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/texrc,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -d -r1.27 -r1.28
*** texrc 2 Jun 2003 13:39:35 -0000 1.27
--- texrc 15 Jun 2003 08:42:11 -0000 1.28
***************
*** 482,486 ****
" remember them. You can display them with utf-8. Your system/GUI interface
" have to support utf-8. This addition is necessary for resetting 'encoding'.
! if exists("g:Tex_UseUtfMenus") && g:Tex_UseUtfMenus != 0 && has("gui_running")
set encoding=utf-8
endif
--- 482,488 ----
" remember them. You can display them with utf-8. Your system/GUI interface
" have to support utf-8. This addition is necessary for resetting 'encoding'.
! TexLet g:Tex_UseUtfMenus = 0
!
! if g:Tex_UseUtfMenus != 0 && has("gui_running")
set encoding=utf-8
endif
|