; * lisp/tempo.el (tempo-add-tag): Punctuation fixes in comments.

This commit is contained in:
Eli Zaretskii 2020-02-21 11:18:04 +02:00
parent 97b8a78334
commit 36df5e74d1

View file

@ -589,11 +589,11 @@ replace its template with TEMPLATE."
(setq tag-list 'tempo-tags))
(let ((entry (assoc tag (symbol-value tag-list))))
(if entry
;; Tag is already in the list, assign a new template to it
;; Tag is already in the list, assign a new template to it.
(setcdr entry template)
;; Tag is not present in the list, add it with its template
;; Tag is not present in the list, add it with its template.
(set tag-list (cons (cons tag template) (symbol-value tag-list)))))
;; Invalidate globally if we're modifying `tempo-tags'
;; Invalidate globally if we're modifying 'tempo-tags'.
(tempo-invalidate-collection (eq tag-list 'tempo-tags)))
;;;