diff options
| author | Phillip Lord <phillip.lord@russet.org.uk> | 2019-07-20 17:29:41 +0100 |
|---|---|---|
| committer | Phillip Lord <phillip.lord@russet.org.uk> | 2019-07-21 21:10:53 +0100 |
| commit | 1972d49a9ad7b9200be34629022417b4e2e7ad1c (patch) | |
| tree | c357965b8d097a30cd51f6f94e7f2d6fec6c0b44 | |
| parent | 883fbfcfe2f6a1a850faa9f366746ba88f7ac6c1 (diff) | |
| download | org-drill-1972d49a9ad7b9200be34629022417b4e2e7ad1c.tar.gz org-drill-1972d49a9ad7b9200be34629022417b4e2e7ad1c.zip | |
Update documentation
| -rw-r--r-- | org-drill.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/org-drill.el b/org-drill.el index 2f4bc72..30a2583 100644 --- a/org-drill.el +++ b/org-drill.el @@ -1546,11 +1546,13 @@ the current topic." (reverse drill-sections))) (defun org-drill-hide-all-subheadings-except (heading-list) + "Hide all subheadings except HEADING-LIST." (org-drill-hide-subheadings-if (lambda () (let ((drill-heading (org-get-heading t))) (not (member drill-heading heading-list)))))) (defun org-drill--make-minibuffer-prompt (session prompt) + "Make a mini-buffer for the SESSION, with PROMPT." (let ((status (cl-first (org-drill-entry-status session))) (mature-entry-count (+ (length (oref session young-mature-entries)) (length (oref session old-mature-entries)) |
