Function: allout-snug-back
allout-snug-back is a byte-compiled function defined in allout.el.gz.
Signature
(allout-snug-back)
Documentation
Position cursor at end of previous topic.
Presumes point is at the start of a topic prefix.
Source Code
;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_ > allout-snug-back ()
(defun allout-snug-back ()
"Position cursor at end of previous topic.
Presumes point is at the start of a topic prefix."
(if (or (bobp) (eobp))
nil
(forward-char -1))
(if (or (bobp) (not (= ?\n (preceding-char))))
nil
(forward-char -1))
(point))