branch: externals/tmr
commit 914e761471a34f6a1aba50781b05fa737a37b123
Author: Protesilaos Stavrou <[email protected]>
Commit: Protesilaos Stavrou <[email protected]>

    Fix typo in the symbol of a user option
---
 tmr.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tmr.el b/tmr.el
index 35ed2554b0..e5d887d51b 100644
--- a/tmr.el
+++ b/tmr.el
@@ -139,7 +139,7 @@ Each function must accept a timer as argument."
   :package-version '(tmr . "1.0.0")
   :type 'string)
 
-(defcustom tmr-acknoledge-timer-text "ack"
+(defcustom tmr-acknowledge-timer-text "ack"
   "Text to confirm that a timer is acknowledged.
 This is the input to be given to the minibuffer prompt that asks for
 confirmation when a timer has to be acknowledged (acknowledgement here
@@ -737,8 +737,8 @@ If optional DEFAULT is provided use it as a default 
candidate."
                (read-from-minibuffer
                 (format "%s\nAcknowledge with `%s' or additional duration: "
                         (tmr--long-description-for-finished-timer timer)
-                        tmr-acknoledge-timer-text))))
-          (not (or (equal input tmr-acknoledge-timer-text)
+                        tmr-acknowledge-timer-text))))
+          (not (or (equal input tmr-acknowledge-timer-text)
                    (when-let* ((duration
                                 (ignore-errors
                                   (tmr--parse-duration (current-time) input))))

Reply via email to