diff options
-rw-r--r-- | sx-inbox.el | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/sx-inbox.el b/sx-inbox.el index 7df0862..593128a 100644 --- a/sx-inbox.el +++ b/sx-inbox.el @@ -173,17 +173,16 @@ is an alist containing the elements: sx-question-list-ago-string) 'face 'sx-question-list-date) (list - (propertize - " " 'display - (concat "\n " (propertize (or .title "") 'face 'sx-question-list-date) "\n" + (propertize " " 'display + (concat " " (propertize (or .title "") 'face 'sx-question-list-date) "\n" (when .body (let ((col fill-column)) (with-temp-buffer (setq fill-column col) - (insert " " .body) + (insert " " .body) (fill-region (point-min) (point-max)) - (buffer-string))) "\n") - 'face (if .is_unread 'bold 'default)))))))) + (buffer-string)))) + "\n" ) 'face (if .is_unread 'bold 'default) )))))) ;;; Entry commands |