From 14ef0d2cb8e9d53962cc446239a7c367187ca2b4 Mon Sep 17 00:00:00 2001 From: Amr Gharbeia Date: Tue, 28 Apr 2026 19:02:30 -0400 Subject: [PATCH] fix(context): correct unclosed string in active projects --- harness/context.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/harness/context.org b/harness/context.org index bd39c4a..907dc40 100644 --- a/harness/context.org +++ b/harness/context.org @@ -34,7 +34,7 @@ The *Context API* (Peripheral Vision) provides the opencortex with the ability t #+begin_src lisp (defun context-get-active-projects () "Returns headlines tagged as 'project' that are not yet marked DONE." - (remove-if (lambda (obj) (equal (getf (org-object-attributes obj) :TODO-STATE) "DONE) + (remove-if (lambda (obj) (equal (getf (org-object-attributes obj) :TODO-STATE) "DONE")) (context-query-store :tag "project" :type :HEADLINE))) #+end_src