From e83683bceaeaccafbab9506ace21bff261f9564c Mon Sep 17 00:00:00 2001 From: Artur Malabarba Date: Mon, 24 Nov 2014 10:56:06 +0000 Subject: Fix let bug --- sx-view.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sx-view.el') diff --git a/sx-view.el b/sx-view.el index 74dde25..faad8be 100644 --- a/sx-view.el +++ b/sx-view.el @@ -39,9 +39,9 @@ Page is a capitalized string. This defines a command `sx-view-PAGE' for displaying the page, and a variable `sx-view--PAGE-buffer' for holding the bufer." (declare (indent 1) (debug t)) - (let ((name (downcase page)) - (buffer-variable - (intern (concat "sx-view--" name "-buffer")))) + (let* ((name (downcase page)) + (buffer-variable + (intern (concat "sx-view--" name "-buffer")))) `(progn (defvar ,buffer-variable nil ,(format "Buffer where the %s questions are displayed." -- cgit v1.2.3