summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeon Rische <leon.rische@me.com>2020-09-23 10:24:13 +0200
committerLeon Rische <leon.rische@me.com>2020-09-23 10:24:13 +0200
commit067d5c160af79b76cd9dd0ec41fa2dae9c7d9fbb (patch)
tree8d64cc3310e3934d582df482064e0b5d3ebe98cc
parentf83131ecfea29b1575da737257c0be47c4852d87 (diff)
Remove unused buffer location functions
-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 ()