view pixmaps/gen-inline-pixbufs.sh @ 26498:e36aefc588c2 v8.2.3779

patch 8.2.3779: using freed memory when defining a user command recursively Commit: https://github.com/vim/vim/commit/205f29c3e9b895dbaa4f738046da455a93c3812a Author: Bram Moolenaar <Bram@vim.org> Date: Fri Dec 10 21:46:09 2021 +0000 patch 8.2.3779: using freed memory when defining a user command recursively Problem: Using freed memory when defining a user command from a user command. Solution: Do not use the command pointer after executing the command. (closes #9318)
author Bram Moolenaar <Bram@vim.org>
date Fri, 10 Dec 2021 23:00:04 +0100
parents d4faa2c5211b
children
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