diff options
-rw-r--r-- | sx-cache.el | 3 | ||||
-rw-r--r-- | sx-question-list.el | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/sx-cache.el b/sx-cache.el index 7ff7f7f..07352d0 100644 --- a/sx-cache.el +++ b/sx-cache.el @@ -89,8 +89,11 @@ re-initialize the cache." Afterwards reinitialize caches using `sx-initialize'. If SAVE-AUTH is non-nil, do not clear AUTH cache. +Interactively only clear AUTH cache if prefix arg was given. + Note: This will also remove read/unread status of questions as well as delete the list of hidden questions." + (interactive (list (not current-prefix-arg))) (let* ((default-directory sx-cache-directory) (caches (file-expand-wildcards "*.el"))) (when save-auth diff --git a/sx-question-list.el b/sx-question-list.el index ddc04c7..ce6c1d6 100644 --- a/sx-question-list.el +++ b/sx-question-list.el @@ -52,7 +52,7 @@ :group 'sx-question-list-faces) (defface sx-question-list-answers-accepted - '((t :underline t :overline t :inherit sx-question-list-answers)) + '((t :box 1 :inherit sx-question-list-answers)) "" :group 'sx-question-list-faces) |