diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-12-14 22:14:47 -0200 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-12-14 22:14:47 -0200 |
commit | 46210719ee1b322a64ce8abe79d32c26ed2b9137 (patch) | |
tree | 270ea20a3efeacdac62fc174e8b11ad8a7a0d279 | |
parent | 26d2da1e992130897c24898142e36798b0f2d981 (diff) |
Fix leftover references to wrong variable name.
-rw-r--r-- | sx-tab.el | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -72,13 +72,13 @@ variables, but before refreshing the display." ,(format "Display a list of %s questions for SITE. NO-UPDATE (the prefix arg) is passed to `sx-question-list-refresh'. -If SITE is nil, use `sx-tab-default-site'." +If SITE is nil, use `sx-default-site'." tab) (interactive (list current-prefix-arg (sx--interactive-site-prompt))) (sx-initialize) - (unless site (setq site sx-tab-default-site)) + (unless site (setq site sx-default-site)) ;; Create the buffer (unless (buffer-live-p ,buffer-variable) (setq ,buffer-variable |