Function: outline-show-heading

outline-show-heading is a byte-compiled function defined in outline.el.gz.

Signature

(outline-show-heading)

Documentation

Show the current heading and move to its end.

Source Code

;; Defined in /usr/src/emacs/lisp/outline.el.gz
(defun outline-show-heading ()
  "Show the current heading and move to its end."
  (outline-flag-region (- (point)
                          (if (bobp) 0
                            (if (and outline-blank-line
                                     (eq (char-before (1- (point))) ?\n))
                                2 1)))
		       (progn (outline-end-of-heading) (point))
		       nil))