]> git.pld-linux.org Git - packages/vim.git/blame - vim-CAN-2005-0069.patch
- license change to GPL
[packages/vim.git] / vim-CAN-2005-0069.patch
CommitLineData
12c15a4c
AG
1diff -burN vim63.orig/runtime/tools/tcltags vim63/runtime/tools/tcltags
2--- vim63.orig/runtime/tools/tcltags 2005-03-19 15:54:53.345907600 +0100
3+++ vim63/runtime/tools/tcltags 2005-03-19 15:55:45.333004360 +0100
4@@ -8,7 +8,8 @@
5 program_version="0.3"
6 program_author="Darren Hiebert"
7 author_email="darren@hiebert.com"
8-tmp_tagfile=/tmp/${program_name}.$$
9+tmp_tagfile=`mktem -t tcltagXXXXXX` || exit 1
10+trap "rm -rf $tmp_tagfile" 0 1 2 3 9 11 13 15
11
12 usage="\
13 Usage: $program_name [-au] [-{f|o} tagfile] [--format=n] file(s)
14diff -burN vim63.orig/runtime/tools/vimspell.sh vim63/runtime/tools/vimspell.sh
15--- vim63.orig/runtime/tools/vimspell.sh 2005-03-19 15:54:53.345907600 +0100
16+++ vim63/runtime/tools/vimspell.sh 2005-03-19 15:56:32.960763840 +0100
17@@ -13,9 +13,7 @@
18 # March 1999
19
20 INFILE=$1
21-OUTFILE=/tmp/vimspell.$$
22-# if you have "tempfile", use the following line
23-#OUTFILE=`tempfile`
24+OUTFILE=`mktemp -t vimspellXXXXXX` || exit 1
25
26 #
27 # local spellings
This page took 0.028782 seconds and 4 git commands to generate.