]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/org/org-timer.el (org-timer--run-countdown-timer): Use closures
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 18 May 2021 23:54:38 +0000 (19:54 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 18 May 2021 23:54:38 +0000 (19:54 -0400)
lisp/org/org-timer.el

index b6802fe8b04b45321d8775573076f134ab95b834..852d18579a49a176d2e3027fae16600320e132fc 100644 (file)
@@ -366,7 +366,7 @@ VALUE can be `on', `off', or `paused'."
        (setq org-timer-mode-line-timer nil))
      (when org-timer-display
        (setq org-timer-mode-line-timer
-            (run-with-timer 1 1 'org-timer-update-mode-line))))))
+            (run-with-timer 1 1 #'org-timer-update-mode-line))))))
 
 (defun org-timer-update-mode-line ()
   "Update the timer time in the mode line."
@@ -456,14 +456,15 @@ using three `C-u' prefix arguments."
   "Start countdown timer that will last SECS.
 TITLE will be appended to the notification message displayed when
 time is up."
-  (let ((msg (format "%s: time out" title)))
+  (let ((msg (format "%s: time out" title))
+        (sound org-clock-sound))
     (run-with-timer
-     secs nil `(lambda ()
-                (setq org-timer-countdown-timer nil
-                      org-timer-start-time nil)
-                (org-notify ,msg ,org-clock-sound)
-                (org-timer-set-mode-line 'off)
-                (run-hooks 'org-timer-done-hook)))))
+     secs nil (lambda ()
+               (setq org-timer-countdown-timer nil
+                     org-timer-start-time nil)
+               (org-notify msg sound)
+               (org-timer-set-mode-line 'off)
+               (run-hooks 'org-timer-done-hook)))))
 
 (defun org-timer--get-timer-title ()
   "Construct timer title.