diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-06-20 11:40:24 -0500 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-06-20 11:40:24 -0500 |
commit | ffdbb1306bbf3bd2798228e21975d976c18a7e4a (patch) | |
tree | 7e33ee04cfa04ecca59df3b3a7c43f6054b100c9 | |
parent | 8c1cd79617dbe5d7b990cc768904c73460520e8e (diff) | |
download | org-urgency-ffdbb1306bbf3bd2798228e21975d976c18a7e4a.tar.gz org-urgency-ffdbb1306bbf3bd2798228e21975d976c18a7e4a.zip |
Fix docstrings
-rw-r--r-- | org-urgency.el | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/org-urgency.el b/org-urgency.el index 316ffdf..2516329 100644 --- a/org-urgency.el +++ b/org-urgency.el @@ -50,7 +50,7 @@ Each element in this list should be of the form -\\(FUNC . POST-ARGS) + (FUNC . POST-ARGS) FUNC will be the function called, and it will be called with the first argument being the heading in question (as passed to the function in @@ -58,16 +58,16 @@ argument being the heading in question (as passed to the function in If, then, `org-urgency-functions' were set to -\\((org-urgency-priority 10) - (org-urgency-state \"TODO\")) + '((org-urgency-priority 10) + (org-urgency-state \"TODO\")) then the urgency of a heading H would be equivalent to -\\(apply #\\='+ - (seq-remove #\\='null - (list - (org-urgency-priority h 10) - (org-urgency-state h \"TODO\" 10)))) + (apply #\\='+ + (seq-remove #\\='null + (list + (org-urgency-priority h 10) + (org-urgency-state h \"TODO\" 10)))) See the relevant `org-urgency-' functions for details. @@ -140,11 +140,11 @@ total urgency, or nil." LIST should be a list of lists whose `car' is a symbol and whose `cdr' is a list of arguments. An element such as -\\(tag \"@home\" 10) + (tag \"@home\" 10) will become -\\(org-urgency-tag \"@home\" 10)" + (org-urgency-tag \"@home\" 10)" (mapcar (lambda (x) (cons (intern (format "org-urgency-%s" (car x))) |