summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--org-fc.el19
1 files changed, 0 insertions, 19 deletions
diff --git a/org-fc.el b/org-fc.el
index 76dbffb..5e7cdf0 100644
--- a/org-fc.el
+++ b/org-fc.el
@@ -930,25 +930,6 @@ Processes all holes in the card text."
'org-fc-type-cloze-update)
;;; Working with Overlays / Hiding Text
-;;;; Finding Locations in the Buffer
-
-(defun org-fc-point-at-end-of-previous ()
- "Value of point at the end of the previous line.
-Returns nil if there is no previous line."
- (save-excursion
- (beginning-of-line)
- (if (bobp)
- nil
- (progn (backward-char)
- (point)))))
-
-(defun org-fc-point-after-title ()
- "Value of point at the first line after the title keyword.
-Returns nil if there is no title keyword."
- (org-with-point-at (point-min)
- (when (re-search-forward (rx bol "#+TITLE:") nil t)
- (point-at-eol))))
-
;;;; Showing / Hiding Overlays
(defun org-fc-remove-overlays ()