Patch from thanx t35t0r
This commit is contained in:
parent
f14c73ed33
commit
bf7902dae8
2 changed files with 5 additions and 2 deletions
|
@ -1,5 +1,8 @@
|
|||
(Format: Year/Month/Day)
|
||||
Changes for 0.9.15:
|
||||
*05/10/23:
|
||||
* Fixed #1335255 (Gentoo #110197) fbgm had some globbing related probs (thanx t35t0r)
|
||||
fluxbox-generate_menu.in
|
||||
*05/10/21:
|
||||
* Fixed #1223878, Style reloading on USR2 (thanx Zan)
|
||||
Screen.cc
|
||||
|
|
|
@ -133,7 +133,7 @@ if which this_program_does_not_exist-no_really-aA1zZ9 2> /dev/null 1> /dev/null;
|
|||
if [ -x "$file" ]; then
|
||||
if [ $# -gt 1 ]; then
|
||||
shift
|
||||
$*
|
||||
"$@"
|
||||
fi
|
||||
return 0
|
||||
else
|
||||
|
@ -153,7 +153,7 @@ if which this_program_does_not_exist-no_really-aA1zZ9 2> /dev/null 1> /dev/null;
|
|||
else
|
||||
# can rely on return value
|
||||
find_it() {
|
||||
which $1 > /dev/null 2>&1 && shift && $*
|
||||
which $1 > /dev/null 2>&1 && shift && "$@"
|
||||
}
|
||||
|
||||
find_it_options() {
|
||||
|
|
Loading…
Reference in a new issue