summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2020-05-10 10:46:21 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2020-05-10 10:46:21 +0200
commiteabc9712b7cf089a748783a0efd2d971074b8da7 (patch)
treecfad4e488b016bd6ca7bbf9eb53df6b033fa315d
parentaf3def5d06bca0b740d1849ea34b64b09f909633 (diff)
downloadorg-mode-eabc9712b7cf089a748783a0efd2d971074b8da7.tar.gz
Fix code typo.
* lisp/org.el (org-cycle-hide-property-drawers): Fix code typo.
-rw-r--r--lisp/org.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 6b24708..d8ab32e 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -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)