aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarsten Dominik2005-04-16 14:50:10 +0000
committerCarsten Dominik2005-04-16 14:50:10 +0000
commitf6a76cf336f9a6e15f4934e6509a42cb3284f58d (patch)
tree0c49035e7a86ae5990168ebdd868d015f2acc328
parentbf94eed32f992d71c2abcf6bb39e7ef9f16f09c4 (diff)
downloademacs-f6a76cf336f9a6e15f4934e6509a42cb3284f58d.tar.gz
emacs-f6a76cf336f9a6e15f4934e6509a42cb3284f58d.zip
(org-up-heading-all): Fixed bug with
`outline-up-heading-all'.
-rw-r--r--lisp/textmodes/org.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/org.el b/lisp/textmodes/org.el
index 260f0fa8bc5..c162160397e 100644
--- a/lisp/textmodes/org.el
+++ b/lisp/textmodes/org.el
@@ -8403,7 +8403,7 @@ If INVISIBLE-OK is non-nil, an invisible heading line is ok too."
8403This function considers both visible and invisible heading lines. 8403This function considers both visible and invisible heading lines.
8404With argument, move up ARG levels." 8404With argument, move up ARG levels."
8405 (if org-noutline-p 8405 (if org-noutline-p
8406 (outline-up-heading-all arg) 8406 (outline-up-heading arg t)
8407 (org-back-to-heading t) 8407 (org-back-to-heading t)
8408 (looking-at outline-regexp) 8408 (looking-at outline-regexp)
8409 (if (<= (- (match-end 0) (match-beginning 0)) arg) 8409 (if (<= (- (match-end 0) (match-beginning 0)) arg)