view ci/if_ver-1.vim @ 23454:5e6a5ccf5dcb v8.2.2270

patch 8.2.2270: warning for size_t to int conversion Commit: https://github.com/vim/vim/commit/38a434f7ba89ab2602019476219780e07fd8251f Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 2 12:45:45 2021 +0100 patch 8.2.2270: warning for size_t to int conversion Problem: Warning for size_t to int conversion. (Randall W. Morris) Solution: Add a type cast.
author Bram Moolenaar <Bram@vim.org>
date Sat, 02 Jan 2021 13:00:05 +0100
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