branch: elpa/minibar
commit 2c50c766ddb39e010fa2206d102ec33054002f0c
Author: Akib Azmain Turja <a...@disroot.org>
Commit: Akib Azmain Turja <a...@disroot.org>

    Rename minibar--update to minibar-update
---
 minibar.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/minibar.el b/minibar.el
index 05cc9b69a0..01e6b92ee9 100644
--- a/minibar.el
+++ b/minibar.el
@@ -91,7 +91,7 @@ string to display, or nil in case there is to show."
   (mapconcat #'identity (delete nil (mapcar #'funcall modules))
              minibar-module-separator))
 
-(defun minibar--update ()
+(defun minibar-update ()
   "Update Minibar."
   (with-temp-buffer
     (let ((bar "")
@@ -136,12 +136,12 @@ string to display, or nil in case there is to show."
   :global t
   (if minibar-mode
       (progn
-        (minibar--update)
+        (minibar-update)
         (when minibar--update-timer
           (cancel-timer minibar--update-timer))
         (setq minibar--update-timer
               (run-with-timer t minibar-update-interval
-                              #'minibar--update)))
+                              #'minibar-update)))
     (when minibar--update-timer
       (cancel-timer minibar--update-timer)
       (setq minibar--update-timer nil))

Reply via email to