Mercurial > vim
view src/testdir/if_ver-2.vim @ 15796:481452f6687c v8.1.0905
patch 8.1.0905: complicated regexp causes a crash
commit https://github.com/vim/vim/commit/5567ad48b66dff13670af52a48509059acc34dfe
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Feb 12 23:05:46 2019 +0100
patch 8.1.0905: complicated regexp causes a crash
Problem: Complicated regexp causes a crash. (Kuang-che Wu)
Solution: Limit the recursiveness of addstate(). (closes https://github.com/vim/vim/issues/3941)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 12 Feb 2019 23:15:06 +0100 |
parents | 94e37fd22556 |
children |
line wrap: on
line source
" Print py3 interface version and write the result into if_ver.txt. " For Ubuntu. Part 2. redir! >> if_ver.txt if 1 echo "\nPython 3:" python3 import sys; print(sys.version) echo "\n" endif redir END