branch: master
commit 88c7dc41cf28d263c03532904e9a8727a6455d48
Author: Greg Lucas <[email protected]>
Commit: Greg Lucas <[email protected]>
Fix wrong type argument in hydra-timeout
---
hydra.el | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/hydra.el b/hydra.el
index 544e835..55e8440 100644
--- a/hydra.el
+++ b/hydra.el
@@ -772,7 +772,7 @@ Cancel the previous `hydra-timeout'."
(cancel-timer hydra-timer)
(setq hydra-timer (timer-create))
(timer-set-time hydra-timer
- (timer-relative-time nil secs))
+ (timer-relative-time (current-time) secs))
(timer-set-function
hydra-timer
(or function #'hydra-keyboard-quit))