diff options
author | Maciej Barć <xgqt@gentoo.org> | 2023-02-03 18:06:46 +0100 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2023-02-03 18:06:46 +0100 |
commit | 790c244aafb40700d69b06f7eee865e46617ff6a (patch) | |
tree | 1f828ad090f891b94d52d181cf31cf5d04ea9e9e | |
parent | run.sh: do not require only from current directory (diff) | |
download | emacs-elogt-790c244aafb40700d69b06f7eee865e46617ff6a.tar.gz emacs-elogt-790c244aafb40700d69b06f7eee865e46617ff6a.tar.bz2 emacs-elogt-790c244aafb40700d69b06f7eee865e46617ff6a.zip |
elogt.el: message on refreshes
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
-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 |