emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


From: Sebastien Vauban
Subject: [O] [bug] Parts of code blocks are highlighted as Org comments
Date: Mon, 29 Oct 2012 14:20:51 +0100
User-agent: Gnus/5.130006 (Ma Gnus v0.6) Emacs/24.2.50 (windows-nt)

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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]