From: Karl Heuer Date: Tue, 9 Mar 1999 03:13:28 +0000 (+0000) Subject: (outline-back-to-heading): fix invisible-ok. X-Git-Tag: emacs-20.4~492 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7da6666ad95cb440af9c35f32ead9e810517a08b;p=emacs.git (outline-back-to-heading): fix invisible-ok. --- diff --git a/lisp/textmodes/outline.el b/lisp/textmodes/outline.el index 9a58c0997a5..4c5d80f7aeb 100644 --- a/lisp/textmodes/outline.el +++ b/lisp/textmodes/outline.el @@ -338,7 +338,7 @@ at the end of the buffer." "Move to previous heading line, or beg of this line if it's a heading. Only visible heading lines are considered, unless INVISIBLE-OK is non-nil." (beginning-of-line) - (or (outline-on-heading-p t) + (or (outline-on-heading-p invisible-ok) (let (found) (save-excursion (while (not found)