diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-03-07 13:20:54 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-03-07 13:20:54 +0100 |
commit | 34700a6a15323a499d56b2f66a286fc368783371 (patch) | |
tree | 208ba037375ed002886ddbfa8f5c4eeed8327c7e /runtime/syntax/python.vim | |
parent | 7534221ebaba7244f4daaf54bb91206cf45e8a5e (diff) | |
download | vim-git-34700a6a15323a499d56b2f66a286fc368783371.tar.gz |
Updated runtime files.
Diffstat (limited to 'runtime/syntax/python.vim')
-rw-r--r-- | runtime/syntax/python.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/syntax/python.vim b/runtime/syntax/python.vim index 0cdf9c4e4..71b4405e9 100644 --- a/runtime/syntax/python.vim +++ b/runtime/syntax/python.vim @@ -1,7 +1,7 @@ " Vim syntax file " Language: Python " Maintainer: Neil Schemenauer <nas@python.ca> -" Last Change: 2010 Sep 21 +" Last Change: 2013 Feb 26 " Credits: Zvezdan Petkovic <zpetkovic@acm.org> " Neil Schemenauer <nas@python.ca> " Dmitry Vasiliev @@ -236,7 +236,7 @@ endif " Notice that the end of a string, either ''', or """, will end the contained " doctest too. Thus, we do *not* need to have it as an end pattern. if !exists("python_no_doctest_highlight") - if !exists("python_no_doctest_code_higlight") + if !exists("python_no_doctest_code_highlight") syn region pythonDoctest \ start="^\s*>>>\s" end="^\s*$" \ contained contains=ALLBUT,pythonDoctest,@Spell |