org-archive.el: Use `org-outline-regexp' instead of `outline-regexp'.

* org-archive.el (org-archive-to-archive-sibling): Use
`org-outline-regexp' instead of `outline-regexp'.
This commit is contained in:
Bastien Guerry 2011-08-17 11:05:03 +02:00
parent 7a826e09b1
commit d13476b918
1 changed files with 1 additions and 1 deletions

View File

@ -354,7 +354,7 @@ sibling does not exist, it will be created at the end of the subtree."
(widen)
(let (b e pos leader level)
(org-back-to-heading t)
(looking-at outline-regexp)
(looking-at org-outline-regexp)
(setq leader (match-string 0)
level (funcall outline-level))
(setq pos (point))