Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 11071 - alt-tab window cycling in sawfish
Summary: alt-tab window cycling in sawfish
Status: RESOLVED TEST-REQUEST
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: Brandon Low (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-11-21 21:09 UTC by Michael Jinks
Modified: 2003-11-19 06:13 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Michael Jinks 2002-11-21 21:09:39 UTC
I noticed that I got a "no such file" error when using alt-tab to cycle through
windows under sawfish.  A little digging showed that the x-cycle section of
/usr/share/sawfish/1.2/lisp/sawfish/wm/autoload.jl was the only key command
which was defined using the 'string convention rather than (quote string), so I
changed it to match the others and that fixed the problem.  In case it's useful,
here's the diff output from my changed file:

< (autoload-command 'cycle-windows 'sawfish.wm.commands.x-cycle)
< (autoload-command 'cycle-windows-backwards 'sawfish.wm.commands.x-cycle)
< (autoload-command 'cycle-group 'sawfish.wm.commands.x-cycle)
< (autoload-command 'cycle-group-backwards 'sawfish.wm.commands.x-cycle)
< (autoload-command 'cycle-prefix 'sawfish.wm.commands.x-cycle)
< (autoload-command 'cycle-prefix-backwards 'sawfish.wm.commands.x-cycle)
< (autoload-command 'cycle-class 'sawfish.wm.commands.x-cycle)
< (autoload-command 'cycle-class-backwards 'sawfish.wm.commands.x-cycle)
< (autoload-command 'cycle-dock 'sawfish.wm.commands.x-cycle)
< (autoload-command 'cycle-dock-backwards 'sawfish.wm.commands.x-cycle)
---
> (autoload-command (quote cycle-windows) (quote sawfish.wm.commands.x-cycle))
> (autoload-command (quote cycle-windows-backwards) (quote
sawfish.wm.commands.x-cycle))
> (autoload-command (quote cycle-group) (quote sawfish.wm.commands.x-cycle))
> (autoload-command (quote cycle-group-backwards) (quote
sawfish.wm.commands.x-cycle))
> (autoload-command (quote cycle-prefix) (quote sawfish.wm.commands.x-cycle))
> (autoload-command (quote cycle-prefix-backwards) (quote
sawfish.wm.commands.x-cycle))
> (autoload-command (quote cycle-class) (quote sawfish.wm.commands.x-cycle))
> (autoload-command (quote cycle-class-backwards) (quote
sawfish.wm.commands.x-cycle))
> (autoload-command (quote cycle-dock) (quote sawfish.wm.commands.x-cycle))
> (autoload-command (quote cycle-dock-backwards) (quote
sawfish.wm.commands.x-cycle))
Comment 1 phoen][x 2003-02-22 12:06:24 UTC
Michael, 

is that still usable?

-phoen][x-
Comment 2 Heinrich Wendel (RETIRED) gentoo-dev 2003-11-19 06:13:35 UTC
is this still valid with 1.3?