emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Orgmode] org-get-local-archive-location


From: Ilya Shlyakhter
Subject: [Orgmode] org-get-local-archive-location
Date: Fri, 10 Sep 2010 13:20:57 -0400

In the routine org-get-local-archive-location, is the call to
(match-string 1) at the end extraneous?
Seems like you want to return org-archive-location in this case.

(defun org-get-local-archive-location ()
  "Get the archive location applicable at point."
  (let ((re "^#\\+ARCHIVE:[ \t]+\\(\\S-.*\\S-\\)[ \t]*$")
        prop)
    (save-excursion
      (save-restriction
        (widen)
        (setq prop (org-entry-get nil "ARCHIVE" 'inherit))
        (cond
         ((and prop (string-match "\\S-" prop))
          prop)
         ((or (re-search-backward re nil t)
              (re-search-forward re nil t))
          (match-string 1))
         (t org-archive-location (match-string 1)))))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]