Re: [O] source block variable expansion

2012-01-12 Thread Eric Schulte
I just pushed up a fix for this issue.  Thanks for the report,

Rick Frankel  writes:

> Since org-mode v7.8, editing a code block in an indirect buffer causes
> any referenced code blocks to be executed. While this behavior is
> desired for viewing code in an indirect buffer (as the behavior has
> always been) it is not for editing (esp. if the named block takes a
> long time to run).
>
> Given a referenced source block:
>
> #+name: var
> #+begin_src elisp
>   "you shouldn't see this in the mini-buffer"
> #+end_src
>
> When editing the followiing code block (via =C-c '=), the above block
> (=var=) will be executed. The message =executing Elisp code block
> (var)...= will appear in the =*Message*= buffer and the message above
> will appear in the mini-buffer.
>
> #+name: edit-test(var=var)
> #+begin_src perl
>   $var;
> #+end_src
>

-- 
Eric Schulte
http://cs.unm.edu/~eschulte/



Re: [O] source block variable expansion

2012-01-12 Thread Sebastien Vauban
Hi Rick,

Rick Frankel wrote:
> Since org-mode v7.8, editing a code block in an indirect buffer causes
> any referenced code blocks to be executed. While this behavior is
> desired for viewing code in an indirect buffer (as the behavior has
> always been) it is not for editing (esp. if the named block takes a
> long time to run).
>
> Given a referenced source block:
>
> #+name: var
> #+begin_src elisp
>   "you shouldn't see this in the mini-buffer"
> #+end_src
>
> When editing the followiing code block (via =C-c '=), the above block
> (=var=) will be executed. The message =executing Elisp code block
> (var)...= will appear in the =*Message*= buffer and the message above
> will appear in the mini-buffer.
>
> #+name: edit-test(var=var)
> #+begin_src perl
>   $var;
> #+end_src

Just FYI, note that this variable assignment is/shoud be deprecated: you have
to use:

  #+name: edit-test
  #+headers: :var var=var
  #+begin_src perl
$var;
  #+end_src

or

  #+name: edit-test
  #+begin_src perl :var var=var
$var;
  #+end_src

Best regards,
  Seb

-- 
Sebastien Vauban




[O] source block variable expansion

2012-01-11 Thread Rick Frankel
Since org-mode v7.8, editing a code block in an indirect buffer causes
any referenced code blocks to be executed. While this behavior is
desired for viewing code in an indirect buffer (as the behavior has
always been) it is not for editing (esp. if the named block takes a
long time to run).

Given a referenced source block:

#+name: var
#+begin_src elisp
  "you shouldn't see this in the mini-buffer"
#+end_src

When editing the followiing code block (via =C-c '=), the above block
(=var=) will be executed. The message =executing Elisp code block
(var)...= will appear in the =*Message*= buffer and the message above
will appear in the mini-buffer.

#+name: edit-test(var=var)
#+begin_src perl
  $var;
#+end_src