From mboxrd@z Thu Jan 1 00:00:00 1970 From: Charles Millar Subject: Re: org-collector unable to handle macros Date: Fri, 28 Aug 2015 20:28:36 -0400 Message-ID: <55E0FCB4.2000305@verizon.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42088) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZVU13-0007of-36 for emacs-orgmode@gnu.org; Fri, 28 Aug 2015 20:29:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZVU0z-00041H-Ts for emacs-orgmode@gnu.org; Fri, 28 Aug 2015 20:29:05 -0400 Received: from vms173021pub.verizon.net ([206.46.173.21]:52728) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZVU0z-000419-QJ for emacs-orgmode@gnu.org; Fri, 28 Aug 2015 20:29:01 -0400 Received: from [192.168.1.128] ([70.209.134.187]) by vms173021.mailsrvcs.net (Oracle Communications Messaging Server 7.0.5.32.0 64bit (built Jul 16 2014)) with ESMTPA id <0NTT003S7INU8MN0@vms173021.mailsrvcs.net> for emacs-orgmode@gnu.org; Fri, 28 Aug 2015 19:28:43 -0500 (CDT) In-reply-to: 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 This may be related to the problem or is the same that I reported in April and May and again earlier this month when Bastien's requested details in his August 4th message. org-collector does not work with org 8.3, but does with 8.2.10 Charlie Millar On 08/28/2015 02:11 PM, Mark Edgington wrote: > 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. > > >