From: Daiki Ueno Date: Mon, 25 Aug 2003 06:10:42 +0000 (+0000) Subject: * riece-commands.el (riece-command-change-layout): Use setq instead of X-Git-Url: https://cgit.sxemacs.org/?p=riece;a=commitdiff_plain;h=ecc2f6eb8c0d29971d40f2fbb912bd2f3123478d;hp=7f6728e3100b7d903b919f6a847a9a494ce9b3c3 * riece-commands.el (riece-command-change-layout): Use setq instead of custom-set-variables. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d69615b..b47acc1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,7 +1,8 @@ 2003-08-25 Daiki Ueno * riece-commands.el (riece-command-change-layout): Call - riece-command-configure-windows. + riece-command-configure-windows; Use setq instead of + custom-set-variables. 2003-08-25 Daiki Ueno diff --git a/lisp/riece-commands.el b/lisp/riece-commands.el index fc310d0..a1e2229 100644 --- a/lisp/riece-commands.el +++ b/lisp/riece-commands.el @@ -117,7 +117,7 @@ "Select a layout-name from all current available layouts and change the layout to the selected layout-name." (interactive (list (completing-read "Layout: " riece-layout-alist))) - (customize-set-variable 'riece-layout name) + (setq riece-layout name) (riece-command-configure-windows)) (defun riece-command-toggle-channel-buffer-mode ()