From mboxrd@z Thu Jan 1 00:00:00 1970 From: Greg Minshall Subject: babel awk with table input: Code block produced no output. Date: Thu, 02 Aug 2012 09:01:01 -0400 Message-ID: <54085.1343912461@gregair> References: Return-path: Received: from eggs.gnu.org ([208.118.235.92]:38031) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Swv1Z-0000oO-6R for emacs-orgmode@gnu.org; Thu, 02 Aug 2012 09:01:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Swv1R-0002PC-R2 for emacs-orgmode@gnu.org; Thu, 02 Aug 2012 09:01:09 -0400 Received: from relay00.pair.com ([209.68.5.9]:3679) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1Swv1R-0002Ou-Ks for emacs-orgmode@gnu.org; Thu, 02 Aug 2012 09:01:01 -0400 Received: from gregair (localhost [127.0.0.1]) by gregair.cliq.com (Postfix) with ESMTP id 4C721111D7E67 for ; Thu, 2 Aug 2012 09:01:02 -0400 (EDT) In-reply-to: Your message of "Tue, 31 Jul 2012 11:48:51 +0900." 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: Org Mode Mailing List hi. it appears that a left or right paren in an entry in a table makes awk not execute. here's an example (change ":stdin fails" to ":stdin works" to see it work). cheers, Greg ---- #+tblname: fails | proto | no c code | | | pscl | c code, just fine | | | quadprog | (minimal) c code, just fine | | #+tblname: works | proto | no c code | | | pscl | c code, just fine | | | quadprog | minimal c code, just fine | | #+begin_src awk :stdin fails BEGIN { print "starting" } { print $0 } #+end_src