annotate lib-src/installexe.sh @ 4369:ef9eb714f0e4
Add ascii-case-table, #'with-case-table; make iso8859-1.el more comprehensible.
2007-12-30 Aidan Kehoe <kehoea@parhasard.net>
* subr.el (with-case-table): New.
Idea and implementation taken from GNU's code of April 2007,
before GPL V3 was implied. Thank you GNU.
* iso8859-1.el (ascii-case-table): New.
Idea taken from GNU.
* iso8859-1.el :
Change Jamie's implicit compile-time call to a macro literal into
something comprehensible to and maintainable by mortals, using to
cl.el's #'loop.
* iso8859-1.el (ctl-arrow):
Initialise it to something more comprehensible.
author |
Aidan Kehoe <kehoea@parhasard.net> |
date |
Sun, 30 Dec 2007 16:18:33 +0100 |
parents |
3ee1c468b215 |
children |
8a653fbe5c27 |
rev |
line source |
462
|
1 #!bash
|
428
|
2
|
|
3 install_prog=$1
|
|
4 shift
|
|
5
|
|
6 tstr=""
|
462
|
7
|
2940
|
8 while [[ $# -gt 0 ]]
|
428
|
9 do
|
2940
|
10 if [[ -f $1.exe ]]
|
428
|
11 then
|
2940
|
12 if [[ "$2" == *.exe ]]
|
|
13 then
|
|
14 tstr="$tstr$1 $2"
|
|
15 else
|
|
16 tstr="$tstr$1.exe $2.exe"
|
|
17 fi
|
428
|
18 shift 2
|
|
19 else
|
|
20 tstr="$tstr$1 "
|
|
21 fi
|
|
22 shift
|
|
23 done
|
|
24 echo "$install_prog $tstr"
|
|
25 eval "$install_prog $tstr"
|
|
26 exit
|
|
27
|