diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-11-24 10:56:06 +0000 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-11-24 10:56:06 +0000 |
commit | e83683bceaeaccafbab9506ace21bff261f9564c (patch) | |
tree | da6456d51b68385585ca9268209579c13901ec84 | |
parent | 413f850fff7ca23a0818a64dac4941d87d007a2c (diff) |
Fix let bug
-rw-r--r-- | sx-view.el | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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." |