From: <dom...@us...> - 2013-09-03 11:59:03
|
Revision: 549 http://sourceforge.net/p/fvwm-crystal/code/549 Author: dominique_libre Date: 2013-09-03 11:59:01 +0000 (Tue, 03 Sep 2013) Log Message: ----------- components/functions/Fullscreem: removed one more bashism. Modified Paths: -------------- ChangeLog fvwm/components/functions/Fullscreen Modified: ChangeLog =================================================================== --- ChangeLog 2013-09-01 20:01:34 UTC (rev 548) +++ ChangeLog 2013-09-03 11:59:01 UTC (rev 549) @@ -1,5 +1,8 @@ ChangeLog for FVWM-Crystal +Mardi 3 septembre 2013 Dominique Michel + components/functions/Fullscreem: removed one more bashism. + Dimanche 1 septembre 2013 Dominique Michel scripts/DesktopCheckMounts, findumpartitions: removed bashisms ([[ -> ]). scripts/make_all_playlists: shebang bash; added .ram video format support. Modified: fvwm/components/functions/Fullscreen =================================================================== --- fvwm/components/functions/Fullscreen 2013-09-01 20:01:34 UTC (rev 548) +++ fvwm/components/functions/Fullscreen 2013-09-03 11:59:01 UTC (rev 549) @@ -72,7 +72,7 @@ DestroyFunc Disappear AddToFunc Disappear # if FS; then if !State20; then show; else hide all; fi -+ I PipeRead 'if [[ "$(ls $[infostore.TmpDirectory]/fullscreen.19.0x???????.$[page.nx].$[page.ny].tmp 2>/dev/null)" != "" ]]; then \ ++ I PipeRead 'if [ "$(ls $[infostore.TmpDirectory]/fullscreen.19.0x???????.$[page.nx].$[page.ny].tmp 2>/dev/null)" != "" ]; then \ for i in $(ls $[infostore.TmpDirectory]/fullscreen.19.0x???????.$[page.nx].$[page.ny].tmp 2>/dev/null); \ do file=`echo "${i}"|sed -e \'s:fullscreen.19:fullscreen.20:\'`; \ if [ -e "${file}" ]; then echo "WindowId $(echo $file | cut -d . -f 3) Disappear-Off"; exit; \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |