jplindstrom / emacs-org-transform-tree-table

Transform an org-mode outline and its properties to a table format (org-table, CSV)
GNU General Public License v3.0
26 stars 4 forks source link

Fix for undefined function #1

Closed syohex closed 9 years ago

syohex commented 9 years ago

'alist-value' is not defined as default in Emacs. We can use 'assoc-default' for this purpose.

I got following error with original code when I call org-transform-tree/org-table-buffer-from-outline.

Symbol's function definition is void: alist-value

Please review this patch.

jplindstrom commented 9 years ago

D'oh, that's one of my (unnecessary) old util functions.

Thanks!