view src/testdir/test_comparators.vim @ 24172:09598e5ced97 v8.2.2627

patch 8.2.2627: no need to check for BSD after checking for not root Commit: https://github.com/vim/vim/commit/4355894869355c185e7810e67d52802453576e81 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 20 12:49:15 2021 +0100 patch 8.2.2627: no need to check for BSD after checking for not root Problem: No need to check for BSD after checking for not root. Solution: Remove CheckNotBSD. (Ozaki Kiichi, closes https://github.com/vim/vim/issues/7989)
author Bram Moolenaar <Bram@vim.org>
date Sat, 20 Mar 2021 13:00:03 +0100
parents 08940efa6b4e
children
line wrap: on
line source

" Test for comparators

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

" vim: shiftwidth=2 sts=2 expandtab