branch: externals/indent-bars
commit a195a06b8cd1ffff369c2040111a7d3d3913ebc5
Author: JD Smith <[email protected]>
Commit: JD Smith <[email protected]>
Correctly call run-at-time
run-at-time uses &rest args but timer-set-function uses &optional args
---
indent-bars.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/indent-bars.el b/indent-bars.el
index f7836d12c9..35c7069dec 100644
--- a/indent-bars.el
+++ b/indent-bars.el
@@ -1050,7 +1050,7 @@ Rate limit set by `indent-bars-depth-update-delay'."
(unless (memq tmr timer-list) (timer-activate tmr)))
(setq indent-bars--highlight-timer
(run-at-time indent-bars-depth-update-delay nil
- #'indent-bars--update-current-depth-highlight
(list depth))))))))
+ #'indent-bars--update-current-depth-highlight
depth)))))))
;;;; Text scaling and window hooks
(defvar-local indent-bars--remap-stipple nil)