emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] [BUG] in org-babel-get-src-block-info when certain :header-args


From: Rasmus
Subject: Re: [O] [BUG] in org-babel-get-src-block-info when certain :header-args are set
Date: Tue, 10 Feb 2015 12:33:25 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux)

Rainer M Krug <address@hidden> 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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]