emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/org-drill 6938a466e0 208/251: Update documentation


From: ELPA Syncer
Subject: [nongnu] elpa/org-drill 6938a466e0 208/251: Update documentation
Date: Mon, 17 Jan 2022 18:59:18 -0500 (EST)

branch: elpa/org-drill
commit 6938a466e0305450170e48476e551c12d55669a7
Author: Phillip Lord <phillip.lord@russet.org.uk>
Commit: Phillip Lord <phillip.lord@russet.org.uk>

    Update documentation
---
 org-drill.el | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/org-drill.el b/org-drill.el
index 5f35abaced..3076a48e86 100644
--- a/org-drill.el
+++ b/org-drill.el
@@ -813,6 +813,7 @@ situation use `org-part-of-drill-entry-p'."
     (member org-drill-question-tag (org-get-tags nil t))))
 
 (defun org-drill-goto-entry (marker)
+  "Switch to the buffer and position of MARKER."
   (switch-to-buffer (marker-buffer marker))
   (goto-char marker))
 
@@ -901,11 +902,15 @@ from the entry at point."
           org-drill-overdue-interval-factor)))
 
 (defun org-drill-entry-due-p (session)
+  "Return non-nil if the entry at point is overdue.
+
+The SESSION can affect the definition of overdue."
   (let ((due (org-drill-entry-days-overdue session)))
     (and (not (null due))
          (not (cl-minusp due)))))
 
 (defun org-drill-entry-new-p ()
+  "Return non-nil if the entry at point is new."
   (and (org-drill-entry-p)
        (let ((item-time (org-get-scheduled-time (point))))
          (null item-time))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]