0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-07-15 15:46:27 +00:00

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

View file

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