[O] [BUG] Noweb reference eval syntax does not work

2016-05-05 Thread fm4d
The noweb reference syntax that should insert results of evaluation of src block itself instead of src block as described in `org-babel-expand-noweb-reference` does not seems to work. Code for replication: * Assign First we assign abc: #+begin_src python :noweb-ref assign_abc abc = "abc" + "

Re: [O] BUG: Wrong indentation inside src block

2016-04-20 Thread fm4d
Nicolas Goaziou writes: > Hello, > > fm4d writes: > >> I believe that this diff is part of that commit - >> http://repo.or.cz/org-mode.git/blobdiff/1045e9e9c0e6438f5ee9dc4f0e5c720a8b670cdd..a311a856514e9245074b02c89d51a9f339784d1c:/lisp/org.el > > The commit you

Re: [O] BUG: Wrong indentation inside src block

2016-04-20 Thread fm4d
I believe that this diff is part of that commit - http://repo.or.cz/org-mode.git/blobdiff/1045e9e9c0e6438f5ee9dc4f0e5c720a8b670cdd..a311a856514e9245074b02c89d51a9f339784d1c:/lisp/org.el Nicolas Goaziou writes: > Hello, > > fm4d writes: > >> Well, the behaviour is IMO

Re: [O] BUG: Wrong indentation inside src block

2016-04-19 Thread fm4d
Well, the behaviour is IMO different because something happend in the commit http://repo.or.cz/org-mode.git/commit/a311a856514e9245074b02c89d51a9f339784d1c that broke it. The indent-tabs-mode is off. Eric S Fraga writes: > On Saturday, 16 Apr 2016 at 15:42, fm4d wrote: >> I made two sho

Re: [O] BUG: Wrong indentation inside src block

2016-04-16 Thread fm4d
Eric S Fraga ucl.ac.uk> writes: > > I don't understand why the behaviour is different with different > versions of org but, just in case, what is the setting of > indent-tabs-mode? I find that things work best with this set to > nil. The actual use of tabs is a holdover from typewriter days...

Re: [O] BUG: Wrong indentation inside src block

2016-04-16 Thread fm4d
John Hendy gmail.com> writes: > > > > On Apr 16, 2016 09:31, "Adam Porter" alphapapa.net> wrote: > > > > The only thing I can think of is that it might be something to do with > > indenting with tabs vs. spaces.  Maybe check your indentation settings. > > Also see if you can reproduce it with

Re: [O] BUG: Wrong indentation inside src block

2016-04-16 Thread fm4d
Adam Porter writes: > fm4d writes: > >> Hello, I found an indentation bug in the master branch. >> >> Steps to reproduce: >> >> * Test 1 >> ** Test 2 >> #+BEGIN_SRC emacs-lisp >> (setq foo 1 >> bar 2) >> #+END_SRC &g

[O] BUG: Wrong indentation inside src block

2016-04-15 Thread fm4d
Hello, I found an indentation bug in the master branch. Steps to reproduce: * Test 1 ** Test 2 #+BEGIN_SRC emacs-lisp (setq foo 1 bar 2) #+END_SRC Paste this code into org-mode buffer with org-startup-indented turn on org-indented-mode. You should see the src block missindented lik