diff options
author | Sean Allred <code@seanallred.com> | 2014-11-26 18:01:44 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-11-26 18:01:44 -0500 |
commit | 8aa2db45afa43da88269c7efa71a6def0b778fdc (patch) | |
tree | 28236849663f5034276678e3184fb17652410ef3 /sx-question-mode.el | |
parent | 31549b4e5a9e67180ad6a0d0b8b61e17274b54a2 (diff) |
Enforce string value for display_name
Diffstat (limited to 'sx-question-mode.el')
-rw-r--r-- | sx-question-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sx-question-mode.el b/sx-question-mode.el index a80704c..b2856e6 100644 --- a/sx-question-mode.el +++ b/sx-question-mode.el @@ -106,7 +106,7 @@ If WINDOW is given, use that to display the buffer." (defcustom sx-question-mode-deleted-user '((display_name . "(deleted user)")) "The structure used to represent a deleted account." - :type '(alist :options (display_name)) + :type '(alist :options ((display_name string)) :risky t :group 'sx-question-mode) |