diff options
Diffstat (limited to 'exwm-core.el')
-rw-r--r-- | exwm-core.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/exwm-core.el b/exwm-core.el index ed9a523448bc..b0a683999da9 100644 --- a/exwm-core.el +++ b/exwm-core.el @@ -168,8 +168,8 @@ The action is to call FUNCTION with arguments ARGS. If Emacs is not idle, defer the action until Emacs is idle. Otherwise, defer the action until at least SECS seconds later." `(run-with-idle-timer (+ (float-time (or (current-idle-time) - (seconds-to-time (- ,secs)))) - ,secs) + (seconds-to-time (- ,secs)))) + ,secs) nil ,function ,@args)) |