view ci/if_ver-1.vim @ 30916:1b4a3cd8c3f7 v9.0.0792

patch 9.0.0792: MS-Windows: compiler complains about unused function Commit: https://github.com/vim/vim/commit/bf72e0c67f26ea7c8fd941fdd1533c24c7b6cb43 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Oct 18 21:48:14 2022 +0100 patch 9.0.0792: MS-Windows: compiler complains about unused function Problem: MS-Windows: compiler complains about unused function. Solution: Add #ifdef. (John Marriott)
author Bram Moolenaar <Bram@vim.org>
date Tue, 18 Oct 2022 23:00:06 +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