summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiet van Oostrum <piet@vanoostrum.org>2019-02-18 21:40:57 +0100
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2019-02-18 21:40:57 +0100
commit08cb207b388bc7d2e87e3e4ddead727c1b927681 (patch)
tree94a6fce5b0a84877a66bc42b1b369546836a6ad3
parentd64704343120992819c7aa8e1b4b78e35718419d (diff)
downloadorg-mode-08cb207b388bc7d2e87e3e4ddead727c1b927681.tar.gz
Add missing `interactive` spec to `org-show-all'
* lisp/org.el (org-show-all): Add missing `interactive` spec to `org-show-all'. TINYCHANGE
-rw-r--r--lisp/org.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/org.el b/lisp/org.el
index f07d0a7..1d9e984 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -6936,6 +6936,7 @@ show that drawer instead."
By default, the function expands headings, blocks and drawers.
When optional argument TYPE is a list of symbols among `blocks',
`drawers' and `headings', to only expand one specific type."
+ (interactive)
(dolist (type (or types '(blocks drawers headings)))
(org-flag-region (point-min) (point-max) nil
(pcase type