diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-01-15 22:07:48 -0200 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-01-15 22:07:48 -0200 |
commit | 74fce2c36f803abe232eebe9f542696b8d0fac23 (patch) | |
tree | 34fca3783f527a7934c655acaa25e7b9c753f023 /sx-question-list.el | |
parent | 1dfa97db27a72f0121001b1d85c13d1cdee37f31 (diff) |
Always use sx-tag face for tags
Diffstat (limited to 'sx-question-list.el')
-rw-r--r-- | sx-question-list.el | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sx-question-list.el b/sx-question-list.el index 306d39f..256bdb4 100644 --- a/sx-question-list.el +++ b/sx-question-list.el @@ -81,11 +81,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 +165,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-tag--format .tags " ")) - 'face 'sx-question-list-tags) + (format "%-40s" (mapconcat #'sx-tag--format .tags " ")) " " (sx-user--format "%15d %4r" .owner) (propertize " " 'display "\n"))))))) |