aboutsummaryrefslogtreecommitdiff
path: root/sx-inbox.el
diff options
context:
space:
mode:
authorSean Allred <code@seanallred.com>2015-01-02 12:47:03 -0500
committerSean Allred <code@seanallred.com>2015-01-02 12:47:03 -0500
commitcf97f4c691ff5a2ee001e1f22e2eed0d7f6a9df8 (patch)
tree2f521c8f35a9a65f9da02eab4ff83257aa0a0260 /sx-inbox.el
parent542ddf73506c2c297106e4b3f4ec0a1d80a35ad8 (diff)
parent9a420bffcc426b4826f14ad1f62b5430750821df (diff)
Merge branch 'master' into goto-map
Diffstat (limited to 'sx-inbox.el')
-rw-r--r--sx-inbox.el5
1 files changed, 2 insertions, 3 deletions
diff --git a/sx-inbox.el b/sx-inbox.el
index 07453d4..d0be379 100644
--- a/sx-inbox.el
+++ b/sx-inbox.el
@@ -170,14 +170,13 @@ is an alist containing the elements:
(list
(propertize
" " 'display
- (concat "\n " .title "\n"
+ (concat "\n " (propertize .title 'face 'sx-question-list-date) "\n"
(let ((col fill-column))
(with-temp-buffer
(setq fill-column col)
(insert " " .body)
(fill-region (point-min) (point-max))
- (propertize (buffer-string)
- 'face 'font-lock-function-name-face))))
+ (buffer-string))))
'face 'default))))))