view ci/if_ver-1.vim @ 27746:2d24aad37e60 v8.2.4399

patch 8.2.4399: crash after ml_get error Commit: https://github.com/vim/vim/commit/f9435e49ef8032e80d38e31e950e4a9b75387533 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Feb 16 16:33:28 2022 +0000 patch 8.2.4399: crash after ml_get error Problem: Crash after ml_get error. Solution: When returning "???" flush the line and set ml_line_lnum.
author Bram Moolenaar <Bram@vim.org>
date Wed, 16 Feb 2022 17:45:03 +0100
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