Rainer M Krug <rai...@krugs.de> 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