From mboxrd@z Thu Jan 1 00:00:00 1970 From: Samuel Wales Subject: Re: Org-mode release 6.29 Date: Tue, 4 Aug 2009 17:40:38 -0700 Message-ID: <20524da70908041740k73a486d9i25d152e4a477fce5@mail.gmail.com> References: <53A4771F-8F19-480A-B12E-01349D00B6D5@uva.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MYUYe-0002ci-GH for emacs-orgmode@gnu.org; Tue, 04 Aug 2009 20:40:44 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MYUYZ-0002bK-TD for emacs-orgmode@gnu.org; Tue, 04 Aug 2009 20:40:44 -0400 Received: from [199.232.76.173] (port=41028 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MYUYZ-0002bH-Km for emacs-orgmode@gnu.org; Tue, 04 Aug 2009 20:40:39 -0400 Received: from mail-yw0-f189.google.com ([209.85.211.189]:36502) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MYUYZ-00045Z-9Y for emacs-orgmode@gnu.org; Tue, 04 Aug 2009 20:40:39 -0400 Received: by mail-yw0-f189.google.com with SMTP id 27so5650344ywh.26 for ; Tue, 04 Aug 2009 17:40:38 -0700 (PDT) In-Reply-To: <53A4771F-8F19-480A-B12E-01349D00B6D5@uva.nl> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Carsten Dominik Cc: emacs-orgmode List Hi Carsten, On 2009-08-04, Carsten Dominik wrote: > When archiving a task, the cursor now ends up on the next > headline, so the repeated application of the archiving > command will archive successive tasks. This is strange. My recollection is that something like this already happened, if not recently, then in a previous release of org. If you archived a task, then point would be at the beginning of the next headline. I had this: ;;archiving moves point to the next entry. however, mapping moves point ;;/after/ running this. ;; ;;it does some kind of save-excursion thing. try running this on 2 ;;sequential entries that need archiving without the continue from thing ;;below. it will skip over the second even if you manually move to the ;;previous entry. see org-map-continue-from. (when (alpha-org-expired-p) (message "want to expire %s" (org-get-heading)) (when t (org-archive-subtree) ;;we have to move back. carsten very kindly added this feature for me. ;;beware loops and skips. (setq org-map-continue-from (point)))))