Skip to content

Commit

Permalink
switch from define-special-variable to devfar-setq
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Roy Bratusek committed Jul 20, 2010
1 parent 875e719 commit 12b5895
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 6 deletions.
10 changes: 10 additions & 0 deletions ChangeLog
@@ -1,8 +1,18 @@
2010-07-20 Christopher Bratusek <zanghar@freenet.de>
* config.h.in: updated

* configure.in: bump minimum librep to 0.90.7

* lisp/sawfish/wm/integration/gnome.jl
* lisp/sawfish/wm/integration/kde.jl
* themes/Elberg-tabbed/INSTALL
* themes/get-S-tabbed/INSTALL
* screenshotter/prep_config.sh
* README.IMPORTANT
* OPTIONS: syntax-update for librep 0.90.7

* man/news.texi: updated

2010-07-03 Teika kazura <teika@lavabit.com>
* configure.in
* man/news.texi
Expand Down
2 changes: 1 addition & 1 deletion README.IMPORTANT
Expand Up @@ -96,6 +96,6 @@ it, so you need to double-click it.
but: the old ui is -of course- still available, use:

sawfish-config --flatten [in a terminal]
(define-special-variable customize-program "sawfish-config --flatten") [in your config-file]
(defvar-setq customize-program "sawfish-config --flatten") [in your config-file]

- Christopher Bratusek <zanghar@freenet.de>
2 changes: 1 addition & 1 deletion lisp/sawfish/wm/integration/gnome.jl
Expand Up @@ -30,7 +30,7 @@

(define-structure-alias gnome-int sawfish.wm.integration.gnome)

(define-special-variable want-poweroff-menu nil)
(defvar-setq want-poweroff-menu nil)

;; invoke the GNOME terminal instead of xterm
(unless (variable-customized-p 'xterm-program)
Expand Down
2 changes: 1 addition & 1 deletion lisp/sawfish/wm/integration/kde.jl
Expand Up @@ -30,7 +30,7 @@

(define-structure-alias kde-int sawfish.wm.integration.kde)

(define-special-variable want-poweroff-menu nil)
(defvar-setq want-poweroff-menu nil)

;; invoke the KDE terminal instead of xterm
(unless (variable-customized-p 'xterm-program)
Expand Down
2 changes: 1 addition & 1 deletion screenshotter/prep_config.sh
Expand Up @@ -15,7 +15,7 @@ rm -rf ~/.sawfish/custom

#echo "(custom-set-typed-variable (quote default-frame-style) (quote $1) \
#(quote frame-style))" > ~/.sawfish/custom
echo "(define-special-variable default-frame-style '$THEME \"Default frame style\")" > ~/.sawfish/rc
echo "(defvar-setq default-frame-style '$THEME \"Default frame style\")" > ~/.sawfish/rc
cat >> ~/.sawfish/rc << EOF
(custom-set-typed-variable
(quote match-window-profile)
Expand Down
2 changes: 1 addition & 1 deletion themes/Elberg-tabbed/INSTALL
@@ -1,7 +1,7 @@
To use this theme, you'll need to do slightly more than just unpack it and
select it. After untarring, add this to your sawfish config:

(define-special-variable default-frame-style 'Elberg-tabbed "Default frame style")
(defvar-setq default-frame-style 'Elberg-tabbed "Default frame style")
(custom-set-typed-variable 'tab-left-dec-width '11 'number)
(custom-set-typed-variable 'tab-right-dec-width '11 'number)
(custom-set-typed-variable 'tab-left-margin '16 'number)
Expand Down
2 changes: 1 addition & 1 deletion themes/get-S-tabbed/INSTALL
@@ -1,7 +1,7 @@
To use this theme, you'll need to do slightly more than just unpack it and
select it. After untarring, add this to your sawfish config:

(define-special-variable default-frame-style 'get-S-tabbed "Default frame style")
(defvar-setq default-frame-style 'get-S-tabbed "Default frame style")
(custom-set-typed-variable 'tab-left-dec-width '5 'number)
(custom-set-typed-variable 'tab-right-dec-width '5 'number)
(custom-set-typed-variable 'tab-left-margin '14 'number)
Expand Down

0 comments on commit 12b5895

Please sign in to comment.