Seems to be a documentation flaw in outline.el: missing command names. Calling `describe-function' on `outline-mode' gives the following description:
... C-c C-t make all text invisible (not headings). C-c C-a make everything in buffer visible. C-c C-q make only the first N levels of headers visible. ... As the missing command names don't start with `outline-', it will be difficult to get them via expand. The following diff should fix the problem. outline.el 274,276c274,276 < \\[hide-body] make all text invisible (not headings). < \\[show-all] make everything in buffer visible. < \\[hide-sublevels] make only the first N levels of headers visible. --- > \\[hide-body] hide-body make all text invisible (not headings). > \\[show-all] show-all make everything in buffer visible. > \\[hide-sublevels] hide-sublevels make only the first N levels of headers visible. -- Andreas Roehler _______________________________________________ emacs-pretest-bug mailing list [email protected] http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug
