diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-01-07 22:50:58 -0200 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-01-07 22:50:58 -0200 |
commit | 976cf5e95dce4fd4d6f74350c8b9ea66aa13c0fd (patch) | |
tree | 683e71610f1f8e0faf736e4b5c293d70c2caa69e /sx-question-list.el | |
parent | a11d7997aa61f6e5bcb5fb6974c25b914b3bd001 (diff) | |
parent | 95e9f6069ba328249c0e8ac86efdc888437ac187 (diff) |
Merge branch 'master' into vermiculus/bot-branch
Diffstat (limited to 'sx-question-list.el')
-rw-r--r-- | sx-question-list.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sx-question-list.el b/sx-question-list.el index c72dc0d..1b7fe5a 100644 --- a/sx-question-list.el +++ b/sx-question-list.el @@ -184,8 +184,8 @@ Also see `sx-question-list-refresh'." " " (let-alist .owner (format "%15s %5s" - (propertize .display_name 'face 'sx-question-list-user) - (propertize (number-to-string .reputation) + (propertize (or .display_name "") 'face 'sx-question-list-user) + (propertize (number-to-string (or .reputation 0)) 'face 'sx-question-list-reputation))) (propertize " " 'display "\n"))))))) |