view src/testdir/test_comparators.vim @ 16494:373cf579e4ca

Added tag v8.1.1250 for changeset 4912193bc5e7c3ebf6ccf54a030e52c0d3917b56
author Bram Moolenaar <Bram@vim.org>
date Fri, 03 May 2019 13:45:06 +0200
parents 140d51d5b5c3
children 08940efa6b4e
line wrap: on
line source

function Test_Comparators()
  try
    let oldisident=&isident
    set isident+=#
    call assert_equal(1, 1 is#1)
  finally
    let &isident=oldisident
  endtry
endfunction