view src/testdir/test_comparators.vim @ 18361:0e2f534150bd

Added tag v8.1.2174 for changeset e460e6878406acb6dfefeebaa9243ead8ce89943
author Bram Moolenaar <Bram@vim.org>
date Fri, 18 Oct 2019 21:30:03 +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