Trevoke / org-gtd.el

A package for using GTD with org-mode
GNU General Public License v3.0
367 stars 45 forks source link

local defuns are not local. #177

Closed dmgerman closed 1 year ago

dmgerman commented 1 year ago

I was under the assumption that a local defun is part of the closure of the enclosing defun. I was wrong. local defuns are global bindings. Thus the old code was replacing emacs's truncate with the local truncate.

This patch renames the function and makes it global, in case it is every needed.

Trevoke commented 1 year ago

Thank you!