diff options
-rw-r--r-- | emms-playing-time.el | 1 | ||||
-rw-r--r-- | emms.el | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/emms-playing-time.el b/emms-playing-time.el index 591ae3e..295c4c5 100644 --- a/emms-playing-time.el +++ b/emms-playing-time.el @@ -120,6 +120,7 @@ should enable `emms-playing-time-display-p' first, though." (add-hook 'emms-player-finished-hook 'emms-playing-time-stop) (add-hook 'emms-player-paused-hook 'emms-playing-time-pause) (add-hook 'emms-player-seeked-functions 'emms-playing-time-seek) + (add-hook 'emms-player-seeked-to-functions 'emms-playing-time-set) (add-hook 'emms-player-time-set-functions 'emms-playing-time-set)) (setq emms-playing-time-display-p nil) (emms-playing-time-stop) @@ -222,7 +222,7 @@ seconds the player did seek." (defcustom emms-player-seeked-to-functions nil "*Functions called when a player is seeking. The functions are called with a single argument, the amount of -seconds the player did seek." +seconds the player seeked to." :group 'emms :type 'hook) |