diff options
author | Leon Rische <leon.rische@me.com> | 2020-09-23 10:24:13 +0200 |
---|---|---|
committer | Leon Rische <leon.rische@me.com> | 2020-09-23 10:24:13 +0200 |
commit | 067d5c160af79b76cd9dd0ec41fa2dae9c7d9fbb (patch) | |
tree | 8d64cc3310e3934d582df482064e0b5d3ebe98cc /org-fc.el | |
parent | f83131ecfea29b1575da737257c0be47c4852d87 (diff) |
Remove unused buffer location functions
Diffstat (limited to 'org-fc.el')
-rw-r--r-- | org-fc.el | 19 |
1 files changed, 0 insertions, 19 deletions
@@ -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 () |