Re: FVWM: <Use comma instead of whitespace>
Viktor Griph <[email protected]>
| Newsgroups | gmane.comp.window-managers.fvwm |
|---|---|
| Message-ID | <CAHFM5PSG6yAR1PSD3UrxpmCMKQ8k3VNUSO_8X5MXBALS6HuVaw@mail.gmail.com> |
2018-02-28 6:14 GMT+10:30 Michelle Konzack <[email protected]>: > ...but I found this file is guilty: > > ----[ ~/.fvwm/Functions.d/AutoHide.conf ]------------------------------- > DestroyFunc autohide > AddToFunc autohide > + I ThisWindow ($0) Deschedule $[w.id] > + I ThisWindow ($0) ThisWindow (Shaded) WindowShade off > + I TestRc (!Match) All ($0, !Shaded autohide\_hide $1 $2) That's the line giving the warning. You are trying to use autohide\_hide $1 $2 as a condition without commas. Try to change it to + I TestRc (!Match) All ($0, !Shaded) autohide\_hide $1 $2 I'm not sure why you need to escape _ in the above code. If it doesn't work still, try to remove the escape as well. /Viktor