view ci/if_ver-1.vim @ 21965:ddfb5f5b2ce5 v8.2.1532

patch 8.2.1532: compiler warning for conversion of size_t to long Commit: https://github.com/vim/vim/commit/2566054a7f406a6c9a082e7fd5f1597164668ca9 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 28 16:38:11 2020 +0200 patch 8.2.1532: compiler warning for conversion of size_t to long Problem: Compiler warning for conversion of size_t to long. Solution: Add type cast.
author Bram Moolenaar <Bram@vim.org>
date Fri, 28 Aug 2020 16:45:03 +0200
parents 27ff44268da5
children 0878f0fd349b
line wrap: on
line source

" Print all interface versions for Ubuntu. Part 1.

if 1
  execute 'source' expand('<sfile>:h') .. '/if_ver-cmd.vim'

  echo "*** Interface versions ***\n"

  echo 'Lua:'
  PrintVer lua print(_VERSION)

  echo 'MzScheme:'
  PrintVer mzscheme (display (version))

  echo 'Perl:'
  PrintVer perl print $^V

  echo 'Ruby:'
  PrintVer ruby print RUBY_VERSION

  echo 'Tcl:'
  PrintVer tcl puts [info patchlevel]

  echo 'Python 2:'
  PrintVer python print sys.version
endif