diff options
| author | Carsten Dominik | 2005-04-16 14:50:10 +0000 |
|---|---|---|
| committer | Carsten Dominik | 2005-04-16 14:50:10 +0000 |
| commit | f6a76cf336f9a6e15f4934e6509a42cb3284f58d (patch) | |
| tree | 0c49035e7a86ae5990168ebdd868d015f2acc328 | |
| parent | bf94eed32f992d71c2abcf6bb39e7ef9f16f09c4 (diff) | |
| download | emacs-f6a76cf336f9a6e15f4934e6509a42cb3284f58d.tar.gz emacs-f6a76cf336f9a6e15f4934e6509a42cb3284f58d.zip | |
(org-up-heading-all): Fixed bug with
`outline-up-heading-all'.
| -rw-r--r-- | lisp/textmodes/org.el | 2 |
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." | |||
| 8403 | This function considers both visible and invisible heading lines. | 8403 | This function considers both visible and invisible heading lines. |
| 8404 | With argument, move up ARG levels." | 8404 | With 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) |