- Timestamp:
- 06/06/2020 01:03:50 AM (4 years ago)
- branch-nick:
- main
- revision id:
- dsowen@fugue88.ws-20200606010350-a3q2d58d2e057m02
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/org-autofocus.el
r16 r17 134 134 135 135 (save-excursion 136 ;; Go to previous mark, if any 136 ;; Go to previous mark, if any, or first task otherwise. 137 137 (while (and (= (forward-line -1) 0) 138 ( setq bol (line-beginning-position))139 ( get-text-property bol 'type)138 (get-text-property (point) 'type) 139 (setq bol (point)) 140 140 (not (org-af--marked-p bol)))) 141 (goto-char bol) 141 142 142 143 (when (org-af--marked-p bol) … … 146 147 147 148 (forward-line) 148 (setq bol ( line-beginning-position))149 (setq bol (point)) 149 150 (if marked 150 151 (add-text-properties bol task-point '(category org-af-hidden))
Note: See TracChangeset
for help on using the changeset viewer.