From 29533525c39e0e243912bb3c807412e4bc3e804e Mon Sep 17 00:00:00 2001 From: Adam Porter Date: Sun, 25 Dec 2022 17:51:00 -0600 Subject: [PATCH] Tidy: (org-ql--plist-get*) Docstring --- org-ql.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/org-ql.el b/org-ql.el index ea6aec1..ede80b5 100644 --- a/org-ql.el +++ b/org-ql.el @@ -699,7 +699,8 @@ returns nil." (user-error "Query aborted by user"))))) (defun org-ql--plist-get* (plist property) - "Return the value of PROPERTY in PLIST, or `not-found' if the property is missing." + "Return the value of PROPERTY in PLIST, or `not-found'. +Returns `not-found' if the property is missing." (if-let ((pair (plist-member plist property))) (cadr pair) 'not-found))