|
@@ -419,6 +419,8 @@
|
|
|
(.query-value-regex))
|
|
(.query-value-regex))
|
|
|
(.query-coloned :date (.query-entryp "date" #'entry-date)
|
|
(.query-coloned :date (.query-entryp "date" #'entry-date)
|
|
|
(.query-value-period))
|
|
(.query-value-period))
|
|
|
|
|
+ (.query-coloned :comment (.query-entryp "comment" #'entry-comment)
|
|
|
|
|
+ (.query-value-regex))
|
|
|
(.let* ((value (.query-value-regex)))
|
|
(.let* ((value (.query-value-regex)))
|
|
|
(.identity (cons :acct
|
|
(.identity (cons :acct
|
|
|
#'(lambda (entry posting)
|
|
#'(lambda (entry posting)
|
|
@@ -440,6 +442,7 @@
|
|
|
(loop for (type . f) in terms
|
|
(loop for (type . f) in terms
|
|
|
do (case type
|
|
do (case type
|
|
|
(:desc (push f desc))
|
|
(:desc (push f desc))
|
|
|
|
|
+ (:comment (push f desc))
|
|
|
(:acct (push f acct))
|
|
(:acct (push f acct))
|
|
|
(:status (push f status))
|
|
(:status (push f status))
|
|
|
(otherwise (push f other))))
|
|
(otherwise (push f other))))
|