summaryrefslogtreecommitdiff
path: root/org-urgency.el
diff options
context:
space:
mode:
authorSimon Parri <simonparri@ganzeria.com>2025-06-20 11:40:24 -0500
committerSimon Parri <simonparri@ganzeria.com>2025-06-20 11:40:24 -0500
commitffdbb1306bbf3bd2798228e21975d976c18a7e4a (patch)
tree7e33ee04cfa04ecca59df3b3a7c43f6054b100c9 /org-urgency.el
parent8c1cd79617dbe5d7b990cc768904c73460520e8e (diff)
downloadorg-urgency-ffdbb1306bbf3bd2798228e21975d976c18a7e4a.tar.gz
org-urgency-ffdbb1306bbf3bd2798228e21975d976c18a7e4a.zip
Fix docstrings
Diffstat (limited to 'org-urgency.el')
-rw-r--r--org-urgency.el20
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)))