From mboxrd@z Thu Jan 1 00:00:00 1970 From: Deric Bytes Subject: font-lock form BEGIN_SRC Date: Thu, 26 Mar 2009 18:58:34 +0000 Message-ID: <59b700510903261158p17afe119ie83b78916bd92be2@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Lmump-0002ht-6h for emacs-orgmode@gnu.org; Thu, 26 Mar 2009 14:58:43 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Lmumk-0002ac-7J for emacs-orgmode@gnu.org; Thu, 26 Mar 2009 14:58:42 -0400 Received: from [199.232.76.173] (port=37105 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Lmumj-0002aC-V2 for emacs-orgmode@gnu.org; Thu, 26 Mar 2009 14:58:38 -0400 Received: from mail-bw0-f167.google.com ([209.85.218.167]:56333) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Lmumj-0005aU-4y for emacs-orgmode@gnu.org; Thu, 26 Mar 2009 14:58:37 -0400 Received: by bwz11 with SMTP id 11so671356bwz.42 for ; Thu, 26 Mar 2009 11:58:35 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi I would like the text in BEGIN_SRC to display the colour and tab-indentation of the appropriate emacs-mode whilst viewing the org file. I would also like to be able to hide the markup tag BEGIN_SRC. #+BEGIN_SRC emacs-lisp (defun org-xor (a b) "Exclusive or." (if a (not b) b)) #+END_SRC