emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/tmr b653422977: Fix 'tmr-confirm' symbol (extends 2ca3e


From: ELPA Syncer
Subject: [elpa] externals/tmr b653422977: Fix 'tmr-confirm' symbol (extends 2ca3ebd)
Date: Mon, 4 Jul 2022 06:57:57 -0400 (EDT)

branch: externals/tmr
commit b6534229771dae4c93f8c777635b69447e4f6be5
Author: Protesilaos Stavrou <info@protesilaos.com>
Commit: Protesilaos Stavrou <info@protesilaos.com>

    Fix 'tmr-confirm' symbol (extends 2ca3ebd)
---
 tmr.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/tmr.el b/tmr.el
index 19863bf345..08e38a3c2f 100644
--- a/tmr.el
+++ b/tmr.el
@@ -293,9 +293,9 @@ cancelling the original one."
   "Let the user choose a timer among all (or ACTIVE) timers.
 
 Return the selected timer.  If there is a single timer and
-`tmr-confirm' is nil, use that.  If there are multiple timers,
-prompt for one with completion with PROMPT text.  If there are no
-timers, throw an error."
+`tmr-confirm-single-timer' is nil, use that.  If there are
+multiple timers, prompt for one with completion with PROMPT text.
+If there are no timers, throw an error."
   (or
    (run-hook-with-args-until-success 'tmr--read-timer-hook)
    (pcase
@@ -303,7 +303,7 @@ timers, throw an error."
            (seq-remove #'tmr--timer-finishedp tmr--timers)
          tmr--timers)
      ('nil (user-error "No timers available"))
-     ((and `(,timer) (guard (not tmr-confirm))) timer)
+     ((and `(,timer) (guard (not tmr-confirm-single-timer))) timer)
      (timers
       (let* ((timer-list (mapcar
                           (lambda (x)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]