aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2020-02-21 11:18:04 +0200
committerEli Zaretskii2020-02-21 11:18:04 +0200
commit36df5e74d1db1388f81e366ed1966d15e7c8b999 (patch)
tree23ad337a16eb561f67727330be5972c61930d5f2
parent97b8a78334d22a6b12cc0f922771baf67a4030bc (diff)
downloademacs-36df5e74d1db1388f81e366ed1966d15e7c8b999.tar.gz
emacs-36df5e74d1db1388f81e366ed1966d15e7c8b999.zip
; * lisp/tempo.el (tempo-add-tag): Punctuation fixes in comments.
-rw-r--r--lisp/tempo.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/tempo.el b/lisp/tempo.el
index 2da90f08c87..bc398e7eb67 100644
--- a/lisp/tempo.el
+++ b/lisp/tempo.el
@@ -589,11 +589,11 @@ replace its template with TEMPLATE."
589 (setq tag-list 'tempo-tags)) 589 (setq tag-list 'tempo-tags))
590 (let ((entry (assoc tag (symbol-value tag-list)))) 590 (let ((entry (assoc tag (symbol-value tag-list))))
591 (if entry 591 (if entry
592 ;; Tag is already in the list, assign a new template to it 592 ;; Tag is already in the list, assign a new template to it.
593 (setcdr entry template) 593 (setcdr entry template)
594 ;; Tag is not present in the list, add it with its template 594 ;; Tag is not present in the list, add it with its template.
595 (set tag-list (cons (cons tag template) (symbol-value tag-list))))) 595 (set tag-list (cons (cons tag template) (symbol-value tag-list)))))
596 ;; Invalidate globally if we're modifying `tempo-tags' 596 ;; Invalidate globally if we're modifying 'tempo-tags'.
597 (tempo-invalidate-collection (eq tag-list 'tempo-tags))) 597 (tempo-invalidate-collection (eq tag-list 'tempo-tags)))
598 598
599;;; 599;;;