소스 검색

Forgot a `save-excursion' in `org-apply-on-list'.

Nicolas Goaziou 14 년 전
부모
커밋
fb7183c619
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lisp/org-list.el

+ 1 - 1
lisp/org-list.el

@@ -1235,7 +1235,7 @@ will return the number of items in the current list.
 Sublists of the list are skipped. Cursor is always at the
 beginning of the item."
   (save-excursion
-    (let ((end (copy-marker (org-end-of-item-list)))
+    (let ((end (copy-marker (save-excursion (org-end-of-item-list))))
 	  (next-p (make-marker))
 	  (move-down-action
 	   (lambda (pos value &rest args)