]> code.delx.au - gnu-emacs/commitdiff
(outline-back-to-heading): fix invisible-ok.
authorKarl Heuer <kwzh@gnu.org>
Tue, 9 Mar 1999 03:13:28 +0000 (03:13 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 9 Mar 1999 03:13:28 +0000 (03:13 +0000)
lisp/textmodes/outline.el

index 9a58c0997a590f48bef24327d151b36eedf80665..4c5d80f7aeb59e58381fe8ed8cd514a49eff7fa5 100644 (file)
@@ -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)