# HG changeset patch # User Carsten Dominik # Date 1113663010 0 # Node ID e0ff525f6d80d777eefde1b20221e62bd4ba56c5 # Parent 15fea137a0f1fd5d7c759a2b23efcb8f6df733d7 (org-up-heading-all): Fixed bug with `outline-up-heading-all'. diff -r 15fea137a0f1 -r e0ff525f6d80 lisp/textmodes/org.el --- a/lisp/textmodes/org.el Sat Apr 16 14:49:44 2005 +0000 +++ b/lisp/textmodes/org.el Sat Apr 16 14:50:10 2005 +0000 @@ -8403,7 +8403,7 @@ This function considers both visible and invisible heading lines. With argument, move up ARG levels." (if org-noutline-p - (outline-up-heading-all arg) + (outline-up-heading arg t) (org-back-to-heading t) (looking-at outline-regexp) (if (<= (- (match-end 0) (match-beginning 0)) arg)