* riece-commands.el (riece-command-change-layout): Use setq instead of
authorDaiki Ueno <ueno@unixuser.org>
Mon, 25 Aug 2003 06:10:42 +0000 (06:10 +0000)
committerDaiki Ueno <ueno@unixuser.org>
Mon, 25 Aug 2003 06:10:42 +0000 (06:10 +0000)
custom-set-variables.

lisp/ChangeLog
lisp/riece-commands.el

index d69615b..b47acc1 100644 (file)
@@ -1,7 +1,8 @@
 2003-08-25  Daiki Ueno  <ueno@unixuser.org>
 
        * 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  <ueno@unixuser.org>
 
index fc310d0..a1e2229 100644 (file)
   "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 ()