[Vim-latex-cvs] vimfiles/plugin imaps.vim,1.36,1.37
Brought to you by:
srinathava,
tmaas
From: <sri...@us...> - 2003-12-04 00:06:09
|
Update of /cvsroot/vim-latex/vimfiles/plugin In directory sc8-pr-cvs1:/tmp/cvs-serv3446 Modified Files: imaps.vim Log Message: Meta-bug! A bug in the debugging function. Index: imaps.vim =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/plugin/imaps.vim,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** imaps.vim 26 Nov 2003 05:45:46 -0000 1.36 --- imaps.vim 4 Dec 2003 00:06:06 -0000 1.37 *************** *** 736,748 **** endif endfunction " }}} ! " IMAP_DebugPrint: interface to Tex_DebugPrint if avaialable, otherwise emulate it {{{ " Description: ! function! IMAP_DebugPrint(pattern) ! if exists('*Tex_DebugPrint') ! call Tex_DebugPrint(a:pattern) else if exists('s:debug_'.a:pattern) - let s:debug_{a:pattern} = '' - else echo s:debug_{a:pattern} endif --- 736,746 ---- endif endfunction " }}} ! " IMAP_PrintDebug: interface to Tex_DebugPrint if avaialable, otherwise emulate it {{{ " Description: ! function! IMAP_PrintDebug(pattern) ! if exists('*Tex_PrintDebug') ! call Tex_PrintDebug(a:pattern) else if exists('s:debug_'.a:pattern) echo s:debug_{a:pattern} endif |