Dear Depeloppers,

I'm using org-mode with outline-minor-mode.
I found a trouble with C-c C-o C-s, show-subtree, says

Wrong type argument: commandp, org-show-subtree

in the mini-buffer.

I think the attached patch fix this trouble.

Best wishes,

----
K.Nagashima
uni.n...@gmail.com
diff --git a/lisp/org.el b/lisp/org.el
index 9f70ebb..876dada 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -21179,6 +21179,7 @@ Stop at the first and last subheadings of a superior heading."
 
 (defun org-show-subtree ()
   "Show everything after this heading at deeper levels."
+  (interactive)
   (outline-flag-region
    (point)
    (save-excursion

Reply via email to