]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/tempo.el (tempo-add-tag): Punctuation fixes in comments.
authorEli Zaretskii <eliz@gnu.org>
Fri, 21 Feb 2020 09:18:04 +0000 (11:18 +0200)
committerEli Zaretskii <eliz@gnu.org>
Fri, 21 Feb 2020 09:18:04 +0000 (11:18 +0200)
lisp/tempo.el

index 2da90f08c87e9f67d0f7b1e2810b7290a0004cda..bc398e7eb6735f95bf9033e786ca68eecf6f6ce1 100644 (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)))
 
 ;;;