diff options
-rw-r--r-- | sx-question-list.el | 3 | ||||
-rw-r--r-- | sx-question-mode.el | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sx-question-list.el b/sx-question-list.el index bb49b54..98e7736 100644 --- a/sx-question-list.el +++ b/sx-question-list.el @@ -385,7 +385,8 @@ a new list before redisplaying." (setq tabulated-list-entries (mapcar sx-question-list--print-function (cl-remove-if #'sx-question--hidden-p question-list))) - (when redisplay (tabulated-list-print 'remember)))) + (when redisplay (tabulated-list-print 'remember)) + (sx-message "Done."))) (defcustom sx-question-list-ago-string " ago" "String appended to descriptions of the time since something happened. diff --git a/sx-question-mode.el b/sx-question-mode.el index c90e3e1..b2f4604 100644 --- a/sx-question-mode.el +++ b/sx-question-mode.el @@ -606,7 +606,8 @@ query the api." (goto-char point) (when (equal (selected-window) (get-buffer-window (current-buffer))) - (recenter line)))) + (recenter line))) + (sx-message "Done.")) (defun sx-question-mode--ensure-mode () "Ensures we are in question mode, erroring otherwise." |