Mercurial > hg > xemacs-beta
view lib-src/installexe.sh @ 4546:44129f301385
Make functions in frame.el more general.
(This results in better behaviour on Carbon, notably.)
2008-12-30 Aidan Kehoe <kehoea@parhasard.net>
* frame.el (display-mouse-p):
(display-popup-menus-p):
(display-images-p):
(display-selections-p):
(display-visual-class):
Make all these functions more general, do not hard code device
type symbols where that is inappropriate.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Tue, 30 Dec 2008 14:22:29 +0000 |
parents | 3ee1c468b215 |
children | 8a653fbe5c27 |
line wrap: on
line source
#!bash install_prog=$1 shift tstr="" while [[ $# -gt 0 ]] do if [[ -f $1.exe ]] then if [[ "$2" == *.exe ]] then tstr="$tstr$1 $2" else tstr="$tstr$1.exe $2.exe" fi shift 2 else tstr="$tstr$1 " fi shift done echo "$install_prog $tstr" eval "$install_prog $tstr" exit