Re: [O] [PATCH] lisp/ob-C.el (org-babel-C-execute): turn on inhibit-lisp eval

2013-10-30 Thread Eric Schulte
Applied thanks. Oleh writes: > Hi all, > > Here's a patch to turn this: > > #+begin_src C :results output > puts("[1] 2 3 3"); > #+end_src > > #+RESULTS: > : [1] > > into this: > > #+begin_src C :results output > puts("[1] 2 3 3"); > #+end_src > > #+RESULTS: > : [1] 2 3 > > regards, > Oleh > > F

[O] [PATCH] lisp/ob-C.el (org-babel-C-execute): turn on inhibit-lisp eval

2013-10-30 Thread Oleh
Hi all, Here's a patch to turn this: #+begin_src C :results output puts("[1] 2 3 3"); #+end_src #+RESULTS: : [1] into this: #+begin_src C :results output puts("[1] 2 3 3"); #+end_src #+RESULTS: : [1] 2 3 regards, Oleh From 3cde8ae1316762e106c2229a1661b31de56bc3f9 Mon Sep 17 00:00:00 2001 Fro