Alan Boudreault <aboudrea...@mapgears.com> writes:

> Is it possible to lock the CLOSED tag ? 

Yes, try this:

--8<---------------cut here---------------start------------->8---
(add-hook 'org-blocker-hook 'my-blocker-function)

(defun my-blocker-function (change-plist)
  "Prevent TODO changes if CLOSED."
  (not (equal (plist-get change-plist :from) "CLOSED")))
--8<---------------cut here---------------end--------------->8---

Careful as it throws an error.

-- 
 Bastien


_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to