diff options
-rw-r--r-- | elogt.el | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -138,9 +138,11 @@ A logfile priority level is one of: None, Info, Warn, Error." (defun elogt-refresh-table () "Refresh the ElogT table." (interactive) + (message "Refreshing the ElogT table, please wait...") (setq tabulated-list-entries (elogt--make-log-table-contents)) (tabulated-list-init-header) - (tabulated-list-print t)) + (tabulated-list-print t) + (message "ElogT is ready.")) ;; Major mode |