From 08b386db1f4212ce90f726442fcf356885fb31ae Mon Sep 17 00:00:00 2001 From: Philipp Stephani Date: Sat, 1 Oct 2016 20:13:53 +0200 Subject: [PATCH] Use a simple keyword for a non-nil argument The second argument of `run-with-idle-timer' is Boolean, i.e. only nil and non-nil values are distinguished. Passing a number here is confusing. Pass a descriptive symbol instead. * lisp/frame.el (blink-cursor-mode, blink-cursor-check): Use :repeat symbol instead of number for second argument of `run-with-idle-timer' --- lisp/frame.el | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lisp/frame.el b/lisp/frame.el index b13621a..d3b6353 100644 --- a/lisp/frame.el +++ b/lisp/frame.el @@ -2119,8 +2119,7 @@ blink-cursor-check ;; during command execution) if they set blink-cursor-delay ;; to a very small or even zero value. (run-with-idle-timer (max 0.2 blink-cursor-delay) - blink-cursor-delay - 'blink-cursor-start)))) + :repeat #'blink-cursor-start)))) (define-obsolete-variable-alias 'blink-cursor 'blink-cursor-mode "22.1") @@ -2157,8 +2156,7 @@ blink-cursor-mode ;; during command execution) if they set blink-cursor-delay ;; to a very small or even zero value. (run-with-idle-timer (max 0.2 blink-cursor-delay) - blink-cursor-delay - #'blink-cursor-start)))) + :repeat #'blink-cursor-start)))) ;; Frame maximization/fullscreen -- 2.10.0