Browse Source

Add minor comment.

Brit Butler 11 years ago
parent
commit
a8a2a391ca
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/content.lisp

+ 2 - 0
src/content.lisp

60
         (setf (getf meta :tags) (read-tags (getf meta :tags)))
60
         (setf (getf meta :tags) (read-tags (getf meta :tags)))
61
         (append meta (list :text content))))))
61
         (append meta (list :text content))))))
62
 
62
 
63
+;; Helper Functions
64
+
63
 (defun tag-p (tag obj)
65
 (defun tag-p (tag obj)
64
   "Test if OBJ is tagged with TAG."
66
   "Test if OBJ is tagged with TAG."
65
   (let ((tag (if (typep tag 'tag) tag (make-tag tag))))
67
   (let ((tag (if (typep tag 'tag) tag (make-tag tag))))