diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-03-25 12:32:09 +0000 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-03-25 12:32:09 +0000 |
commit | c9bb828c546150380b38d71d89a24d130941a3ac (patch) | |
tree | 90f774743bf53a527a24cbbd6a282007ce84c538 | |
parent | e761666acec63655df35e3114f9184cf621a0f41 (diff) |
Fix macro expansion
-rw-r--r-- | sx-tab.el | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -65,13 +65,15 @@ Possible values are the cdrs of `sx-tab--order-methods'." :key #'cdr))) :group 'sx-question-list) -(defconst sx-tab--docstring-format - "Display a list of %s questions for SITE. +(eval-and-compile + (defconst sx-tab--docstring-format + "Display a list of %s questions for SITE. The variable `sx-tab-default-order' can be used to customize the sorting of the resulting list. NO-UPDATE (the prefix arg) is passed to `sx-question-list-refresh'. -If SITE is nil, use `sx-default-site'.") +If SITE is nil, use `sx-default-site'." + "Format used on the docstring of `sx-tab-*' commands.")) ;;; The main macro |