Re: [O] [bug] Parts of code blocks are highlighted as Org comments

2012-12-20 Thread Bastien


Hi Sébastien,

"Sebastien Vauban"
 writes:

> If you have such a Sh code block in any Org document, you'll see that the 4th
> line will be highlighted as an Org comment from the "# != 2"...

This is now fixed, thanks.

-- 
 Bastien




[O] [bug] Parts of code blocks are highlighted as Org comments

2012-10-29 Thread Sebastien Vauban
Hello,

If you have such a Sh code block in any Org document, you'll see that the 4th
line will be highlighted as an Org comment from the "# != 2"...

#+begin_src sh
# swap FILE1 FILE2
swap ()
{
if [[ $# != 2 ]]; then
return 1
fi
tmpfile=/tmp/.swapper.$$.$RANDOM
mv -f $1 $tmpfile
mv -f $2 $1
mv -f $tmpfile $2
return 0
}
#+end_src

If you edit such (via C-c '), you can check that it's NOT highlighted as a
comment in the Shell mode.

Best regards,
Seb

-- 
Sebastien Vauban