view ci/if_ver-cmd.vim @ 28936:5a34620140c0 v8.2.4990

patch 8.2.4990: memory leak when :defcompile fails Commit: https://github.com/vim/vim/commit/1a56ea8381b79c4e7697b6a05451dde5940228ea Author: Bram Moolenaar <Bram@vim.org> Date: Sat May 21 16:28:42 2022 +0100 patch 8.2.4990: memory leak when :defcompile fails Problem: Memory leak when :defcompile fails. Solution: Free fname when returning early.
author Bram Moolenaar <Bram@vim.org>
date Sat, 21 May 2022 17:30:02 +0200
parents 27ff44268da5
children
line wrap: on
line source

" Provide 'PrintVer' command to print the interface versions.

func s:print_ver(lang, ...)
  if has(a:lang)
    exec a:lang join(a:000)
  else
    echo 'N/A'
  endif
  echo ''
endfunc

command -nargs=+ PrintVer call <SID>print_ver(<f-args>)