Mercurial > hg > xemacs-beta
view lib-src/installexe.sh @ 862:278c743f1578
[xemacs-hg @ 2002-06-03 12:23:49 by ben]
process fixes
process.el: Create new process-synchronize-point to avoid dynamic binding
problems. Fix editing bogosity in setting process sentinels.
process.c: Don't invalidate the process marker
after the process has died to make point synchronization in
`call-process-internal' possible.
author | ben |
---|---|
date | Mon, 03 Jun 2002 12:24:14 +0000 |
parents | 0784d089fdc9 |
children | 3ee1c468b215 |
line wrap: on
line source
#!bash install_prog=$1 shift tstr="" while [ $# -gt 0 ] do if [ -f $1.exe ] then tstr="$tstr$1.exe $2.exe" shift 2 else tstr="$tstr$1 " fi shift done echo "$install_prog $tstr" eval "$install_prog $tstr" exit