view pixmaps/gen-inline-pixbufs.sh @ 17750:b27d06bd0fde v8.1.1872

patch 8.1.1872: when Vim exits because of a signal, VimLeave is not triggered commit https://github.com/vim/vim/commit/c7226684c82dde7eb6601e067ee2e9387e447903 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 17 16:33:23 2019 +0200 patch 8.1.1872: when Vim exits because of a signal, VimLeave is not triggered Problem: When Vim exits because of a signal, VimLeave is not triggered. (Daniel Hahler) Solution: Unblock autocommands when triggering VimLeave. (closes #4818)
author Bram Moolenaar <Bram@vim.org>
date Sat, 17 Aug 2019 16:45:03 +0200
parents 3fc0f57ecb91
children d4faa2c5211b
line wrap: on
line source

#! /bin/sh

prefix=stock_
list=

for file in "$@"
do
    name=`echo "$file" | sed 's|-|_|g; s|^.*/||; s|\..*$||'`
    list="$list $prefix$name $file"
done

gdk-pixbuf-csource --raw --static --build-list $list