view src/testdir/test_comparators.vim @ 19124:16e6cbdba296

Added tag v8.2.0121 for changeset 09f28c17ac58839633e19d194852e970d963d908
author Bram Moolenaar <Bram@vim.org>
date Wed, 15 Jan 2020 21:00:04 +0100
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