view src/testdir/test_modeline.vim @ 15001:9401618259e9

Added tag v8.1.0511 for changeset 32787e326de2eef4bda654219135d31162513bdf
author Bram Moolenaar <Bram@vim.org>
date Sun, 04 Nov 2018 23:45:07 +0100
parents 85467d180844
children 40d9218b2b12
line wrap: on
line source

" Tests for parsing the modeline.

func Test_modeline_invalid()
  " This was reading allocated memory in the past.
  call writefile(['vi:0', 'nothing'], 'Xmodeline')
  let modeline = &modeline
  set modeline
  call assert_fails('split Xmodeline', 'E518:')
  let &modeline = modeline
  bwipe!
  call delete('Xmodeline')
endfunc