view ci/if_ver-1.vim @ 22178:6666ace75ef5 v8.2.1638

patch 8.2.1638: leaking memory when popup filter function can't be called Commit: https://github.com/vim/vim/commit/8e9be208ea58149c4e522166a6194da18a2eced7 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Sep 8 22:55:26 2020 +0200 patch 8.2.1638: leaking memory when popup filter function can't be called Problem: Leaking memory when popup filter function can't be called. Solution: Don't return too soon.
author Bram Moolenaar <Bram@vim.org>
date Tue, 08 Sep 2020 23:00:04 +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