aboutsummaryrefslogtreecommitdiff
path: root/sx-question-list.el
diff options
context:
space:
mode:
authorSean Allred <code@seanallred.com>2015-02-13 21:05:19 -0600
committerSean Allred <code@seanallred.com>2015-02-13 21:05:19 -0600
commit2e9fb5633907afdd6218e36a6be5412e87dcee2c (patch)
tree639e335eecefd6a3ce52a7288f96e8ce4ffb7b48 /sx-question-list.el
parent89132aa7b82abd1b54356831dda9d4dd28cf7492 (diff)
parent1f73185f411de81a5e26152377c499498d732d8c (diff)
Merge pull request #233 from vermiculus/tag-buttons
Tag buttons
Diffstat (limited to 'sx-question-list.el')
-rw-r--r--sx-question-list.el9
1 files changed, 2 insertions, 7 deletions
diff --git a/sx-question-list.el b/sx-question-list.el
index 7757503..333fd83 100644
--- a/sx-question-list.el
+++ b/sx-question-list.el
@@ -27,6 +27,7 @@
(require 'sx)
(require 'sx-time)
+(require 'sx-tag)
(require 'sx-site)
(require 'sx-question)
(require 'sx-question-mode)
@@ -81,11 +82,6 @@
""
:group 'sx-question-list-faces)
-(defface sx-question-list-tags
- '((t :inherit sx-question-mode-tags))
- ""
- :group 'sx-question-list-faces)
-
(defface sx-question-list-date
'((t :inherit font-lock-comment-face))
""
@@ -170,8 +166,7 @@ Also see `sx-question-list-refresh'."
" "
;; @TODO: Make this width customizable. (Or maybe just make
;; the whole thing customizable)
- (propertize (format "%-40s" (mapconcat #'sx-question--tag-format .tags " "))
- 'face 'sx-question-list-tags)
+ (format "%-40s" (mapconcat #'sx-tag--format .tags " "))
" "
(sx-user--format "%15d %4r" .owner)
(propertize " " 'display "\n")))))))