view ci/if_ver-1.vim @ 28804:12bbd8a31cac v8.2.4926

patch 8.2.4926: #ifdef for crypt feature around too many lines Commit: https://github.com/vim/vim/commit/51f0bc31d3cf512508419064faac0e5b7e52c98b Author: zeertzjq <zeertzjq@outlook.com> Date: Mon May 9 13:33:39 2022 +0100 patch 8.2.4926: #ifdef for crypt feature around too many lines Problem: #ifdef for crypt feature around too many lines. Solution: Move code outside of #ifdef. (closes https://github.com/vim/vim/issues/10388)
author Bram Moolenaar <Bram@vim.org>
date Mon, 09 May 2022 14:45:03 +0200
parents 0878f0fd349b
children
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(vim.lua_version, jit and "(LuaJIT)" or "")

  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