From ecc2f6eb8c0d29971d40f2fbb912bd2f3123478d Mon Sep 17 00:00:00 2001 From: Daiki Ueno Date: Mon, 25 Aug 2003 06:10:42 +0000 Subject: [PATCH] * riece-commands.el (riece-command-change-layout): Use setq instead of custom-set-variables. --- lisp/ChangeLog | 3 ++- lisp/riece-commands.el | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) 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 () -- 2.34.1