From 067d5c160af79b76cd9dd0ec41fa2dae9c7d9fbb Mon Sep 17 00:00:00 2001 From: Leon Rische Date: Wed, 23 Sep 2020 10:24:13 +0200 Subject: Remove unused buffer location functions --- org-fc.el | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'org-fc.el') 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 () -- cgit v1.2.3