From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark Edgington Subject: org-collector unable to handle macros Date: Fri, 28 Aug 2015 18:11:46 +0000 (UTC) Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50527) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZVO8H-0003nJ-LJ for emacs-orgmode@gnu.org; Fri, 28 Aug 2015 14:12:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZVO8E-0003FX-Cs for emacs-orgmode@gnu.org; Fri, 28 Aug 2015 14:12:09 -0400 Received: from plane.gmane.org ([80.91.229.3]:42239) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZVO8E-0003FQ-6J for emacs-orgmode@gnu.org; Fri, 28 Aug 2015 14:12:06 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ZVO8A-0008QS-G7 for emacs-orgmode@gnu.org; Fri, 28 Aug 2015 20:12:02 +0200 Received: from 209.140.209.56 ([209.140.209.56]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 28 Aug 2015 20:12:02 +0200 Received: from edgimar by 209.140.209.56 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 28 Aug 2015 20:12:02 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org I have had problems getting org-collector.el to generate tables where the content of the tables should include macros. At some point in the past this worked, but at this time (latest git version of org-mode), the following example fails (unless you remove the macro from the property definition): # comment-macro #+MACRO: c * Notes :PROPERTIES: :ID: sched_table :COLUMNS: %WEEKNUM(Week #) %DAY(Day) %INCLASS(In-class Content) %READINGS(Readings) %PRECLASS(Pre-class Assignments / Homework) :END: ** WEEK 1 *** DAY :PROPERTIES: :INCLASS: ABC {{{c(stuff)}}} DEF :DAY: T :WEEKNUM: 1 :END: blah * Schedule # type C-c C-c on the #BEGIN line to attempt to generate the table #+BEGIN: propview :id "sched_table" :defaultval "" :conds ((not (string= DAY ""))) :cols (WEEKNUM DAY INCLASS READINGS PRECLASS) :noquote t :colnames ("Week #" Day "In-class Content" "Readings" "Pre-class Assignments / Homework") #+END: Any help in resolving this problem would be appreciated! Thanks.