0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 21:37:50 +00:00

Fix code typo.

* lisp/org.el (org-cycle-hide-property-drawers): Fix code typo.
This commit is contained in:
Nicolas Goaziou 2020-05-10 10:46:21 +02:00
parent af3def5d06
commit eabc9712b7

View file

@ -6148,7 +6148,7 @@ STATE should be one of the symbols listed in the docstring of
(while (re-search-forward org-property-start-re end t)
(pcase (get-char-property-and-overlay (point) 'invisible)
;; Do not fold already folded drawers.
(`(_ . ,o) (goto-char (overlay-end o)))
(`(,_ . ,o) (goto-char (overlay-end o)))
(_
(let ((start (match-end 0)))
(when (org-at-property-drawer-p)