[sawfish] Simplified wm.jl a bit, in making modules exports.
- From: Christopher Bratusek <chrisb src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [sawfish] Simplified wm.jl a bit, in making modules exports.
- Date: Wed, 19 Jan 2011 19:10:50 +0000 (UTC)
commit 6a76e46dad9dcca8748da4e7eddddcf215f534b1
Author: Teika kazura <teika lavabit com>
Date: Tue Jan 18 12:45:49 2011 +0900
Simplified wm.jl a bit, in making modules exports.
It used two identical lists, but now combined to one, making maintenance easier.
lisp/sawfish/wm.jl | 99 ++++++++++++++++++++++------------------------------
1 files changed, 42 insertions(+), 57 deletions(-)
---
diff --git a/lisp/sawfish/wm.jl b/lisp/sawfish/wm.jl
index 8e7f0ae..9c0046c 100644
--- a/lisp/sawfish/wm.jl
+++ b/lisp/sawfish/wm.jl
@@ -87,63 +87,48 @@
sawfish.wm.state.iconify
sawfish.wm.state.ignored
sawfish.wm.server
- sawfish.wm.state.wm-spec
- sawfish.wm.edge.actions))
-
-;; create the exports from sawfish.wm
-(open-structures '(sawfish.wm.colors
- sawfish.wm.commands
- sawfish.wm.cursors
- sawfish.wm.custom
- sawfish.wm.events
- sawfish.wm.focus
- sawfish.wm.fonts
- sawfish.wm.frames
- sawfish.wm.gaol
- sawfish.wm.images
- sawfish.wm.misc
- sawfish.wm.placement
- sawfish.wm.session.init
- sawfish.wm.server
- sawfish.wm.stacking
- sawfish.wm.viewport
- sawfish.wm.window-anim
- sawfish.wm.windows
- sawfish.wm.workspace
- sawfish.wm.state.iconify
- sawfish.wm.state.shading
- sawfish.wm.state.transient
- sawfish.wm.state.ignored
- sawfish.wm.edge.actions))
-
-;; Bindings in these modules are exported by sawfish.wm on behalf of
-;; them. User scripts have to import only sawfish.wm for core functions.
-(export-bindings (parse-interface
- '(compound-interface
- (structure-interface sawfish.wm.colors)
- (structure-interface sawfish.wm.commands)
- (structure-interface sawfish.wm.cursors)
- (structure-interface sawfish.wm.custom)
- (structure-interface sawfish.wm.events)
- (structure-interface sawfish.wm.focus)
- (structure-interface sawfish.wm.fonts)
- (structure-interface sawfish.wm.frames)
- (structure-interface sawfish.wm.gaol)
- (structure-interface sawfish.wm.images)
- (structure-interface sawfish.wm.misc)
- (structure-interface sawfish.wm.placement)
- (structure-interface sawfish.wm.session.init)
- (structure-interface sawfish.wm.server)
- (structure-interface sawfish.wm.stacking)
- (structure-interface sawfish.wm.viewport)
- (structure-interface sawfish.wm.window-anim)
- (structure-interface sawfish.wm.windows)
- (structure-interface sawfish.wm.workspace)
- (structure-interface sawfish.wm.state.iconify)
- (structure-interface sawfish.wm.state.shading)
- (structure-interface sawfish.wm.state.transient)
- (structure-interface sawfish.wm.state.ignored)
- (structure-interface sawfish.wm.edge.actions))))
+ sawfish.wm.state.wm-spec))
+
+;; Create the exports from sawfish.wm; Bindings in these modules are
+;; exported by sawfish.wm on behalf of them. User scripts have to
+;; import only sawfish.wm for core functions.
+(let ((mods '(sawfish.wm.colors
+ sawfish.wm.commands
+ sawfish.wm.cursors
+ sawfish.wm.custom
+ sawfish.wm.events
+ sawfish.wm.focus
+ sawfish.wm.fonts
+ sawfish.wm.frames
+ sawfish.wm.gaol
+ sawfish.wm.images
+ sawfish.wm.misc
+ sawfish.wm.placement
+ sawfish.wm.session.init
+ sawfish.wm.server
+ sawfish.wm.stacking
+ sawfish.wm.viewport
+ sawfish.wm.window-anim
+ sawfish.wm.windows
+ sawfish.wm.workspace
+ sawfish.wm.state.iconify
+ sawfish.wm.state.shading
+ sawfish.wm.state.transient
+ sawfish.wm.state.ignored
+ sawfish.wm.edge.actions)))
+ (open-structures mods)
+ #| I.e.
+ (export-bindings (parse-interface
+ '(compound-interface
+ (structure-interface sawfish.wm.colors)
+ (structure-interface sawfish.wm.commands)
+ ...)))
+ |#
+ (export-bindings (parse-interface
+ (cons 'compound-interface
+ (mapcar (lambda (i)
+ (list 'structure-interface i))
+ mods)))))
(let ((sawfish-load-all (lambda (s)
;; ensure files are loaded in the correct structure
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]