1
0
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-12-31 11:13:59 +00:00

org-list: tiny code change

* lisp/org-list.el (org-list-struct-apply-struct): don't
  use (copy-marker (point)) instead of (point-marker).
This commit is contained in:
Nicolas Goaziou 2011-08-23 22:20:55 +02:00
parent 8bb1a0c57f
commit 08ca5be491

View File

@ -1770,7 +1770,7 @@ the structure to be applied. The function will only modify parts
of the list which have changed.
Initial position of cursor is restored after the changes."
(let* ((origin (copy-marker (point)))
(let* ((origin (point-maker))
(inlinetask-re (and (featurep 'org-inlinetask)
(org-inlinetask-outline-regexp)))
(item-re (org-item-re))