diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-04-11 21:38:50 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-04-11 21:38:50 +0000 |
commit | 4c3f536f472c7443ed4f672ae6d35a28805d7641 (patch) | |
tree | 18d0d8df6d45ff21449a017068aea2ba0931bd57 /runtime/syntax/ocaml.vim | |
parent | 779b74b2a23643aaac026341a4ed8bd6e04371e6 (diff) | |
download | vim-4c3f536f472c7443ed4f672ae6d35a28805d7641.zip |
updated for version 7.0d01
Diffstat (limited to 'runtime/syntax/ocaml.vim')
-rw-r--r-- | runtime/syntax/ocaml.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/syntax/ocaml.vim b/runtime/syntax/ocaml.vim index d95a3c8d4..cdef8c38b 100644 --- a/runtime/syntax/ocaml.vim +++ b/runtime/syntax/ocaml.vim @@ -5,9 +5,9 @@ " Karl-Heinz Sylla <Karl-Heinz.Sylla@gmd.de> " Issac Trotts <ijtrotts@ucdavis.edu> " URL: http://www.ocaml.info/vim/syntax/ocaml.vim -" Last Change: 2005 May 18 - Added 'NOTE' to highlighted comment words (MM) +" Last Change: 2006 Apr 11 - Fixed an initialization bug (MM) +" 2005 May 18 - Added 'NOTE' to highlighted comment words (MM) " 2005 Apr 14 - Fixed a small bug concerning 'include' (MM) -" 2005 Mar 15 - Added a patch from David Baelde (MM) " A minor patch was applied to the official version so that object/end " can be distinguished from begin/end, which is used for indentation, @@ -17,7 +17,7 @@ " For version 6.x: Quit when a syntax file was already loaded if version < 600 syntax clear -elseif exists("b:current_syntax") && b:current_syntax != "ocaml" +elseif exists("b:current_syntax") && b:current_syntax == "ocaml" finish endif |