From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rasmus Subject: Re: [BUG] in org-babel-get-src-block-info when certain :header-args are set Date: Tue, 10 Feb 2015 12:33:25 +0100 Message-ID: <87y4o6ypa2.fsf@gmx.us> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40802) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YL962-0006cJ-7g for emacs-orgmode@gnu.org; Tue, 10 Feb 2015 06:35:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YL95y-0003wH-U8 for emacs-orgmode@gnu.org; Tue, 10 Feb 2015 06:35:14 -0500 Received: from plane.gmane.org ([80.91.229.3]:51871) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YL95y-0003wB-OI for emacs-orgmode@gnu.org; Tue, 10 Feb 2015 06:35:10 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1YL95s-0007ry-RG for emacs-orgmode@gnu.org; Tue, 10 Feb 2015 12:35:04 +0100 Received: from tsn109-201-154-147.dyn.nltelcom.net ([109.201.154.147]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 10 Feb 2015 12:35:04 +0100 Received: from rasmus by tsn109-201-154-147.dyn.nltelcom.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 10 Feb 2015 12:35:04 +0100 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 Rainer M Krug writes: > #+PROPERTY: header-args :tangle-mode (identity #o444) > > * Initial plottings > #+begin_src R > plot(1) > #+end_src > > When calling org-babel-view-src-block-info (C-c C-v C-i) on the code > block above, I get the error below. > > I don't have the slightest clue what this means or how it can be fixed, > but it caused by the call to (identity #o444). Is #o444 significant to you? I guess you could use, or maybe a lambda that combines #o444 whatever it means with your src. I have no clue what #o444 means or :tangle-mode and I never heard of org-babel-view-src-block-info so take it with a grain of salt. #+PROPERTY: header-args :tangle-mode (lambda (src) (identity src)) * Initial plottings #+begin_src R plot(1) #+end_src Or #+PROPERTY: header-args :tangle-mode identity src * Initial plottings #+begin_src R plot(1) #+end_src -- . . . The proofs are technical in nature and provides no real understanding