Changeset main,7 for main


Ignore:
Timestamp:
05/02/2020 01:12:10 AM (4 years ago)
Author:
David Owen <dsowen@…>
branch-nick:
org-autofocus
revision id:
dsowen@fugue88.ws-20200502011210-c77mrxxweedt8xp8
Message:

Docstrings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/org-autofocus.el

    r6 r7  
    3434
    3535(defun org-af--dim (start end)
     36  "Dim the task from START to END."
    3637  (let ((o (make-overlay start end)))
    3738    (overlay-put o 'category org-af-dimmed)))
    3839
    3940(defun org-af--undim (start end)
     41  "Undim the task from START to END."
    4042  (remove-overlays start end 'org-af-dimmed t))
    4143
    4244(defun org-af--dimmed-p (point)
     45  "Test whether the task at POINT is dimmed."
    4346  (get-char-property point 'org-af-dimmed))
    4447
Note: See TracChangeset for help on using the changeset viewer.