From mboxrd@z Thu Jan 1 00:00:00 1970 From: S.P.Tseng Subject: [bug]x2 #+BEGIN_EXAMPLE can not work and #+BEGIN_SRC indent error Date: Thu, 31 Jul 2008 15:24:35 +0800 Message-ID: <85fxpqecss.fsf@modprobe.cn> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KOTcr-0004KD-SW for emacs-orgmode@gnu.org; Thu, 31 Jul 2008 04:35:09 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KOTcq-0004J5-8s for emacs-orgmode@gnu.org; Thu, 31 Jul 2008 04:35:09 -0400 Received: from [199.232.76.173] (port=36370 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KOTcp-0004Iv-RF for emacs-orgmode@gnu.org; Thu, 31 Jul 2008 04:35:07 -0400 Received: from main.gmane.org ([80.91.229.2]:36496 helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1KOTcp-0003BK-Do for emacs-orgmode@gnu.org; Thu, 31 Jul 2008 04:35:07 -0400 Received: from root by ciao.gmane.org with local (Exim 4.43) id 1KOTck-0003i4-8y for emacs-orgmode@gnu.org; Thu, 31 Jul 2008 08:35:02 +0000 Received: from 125.65.219.52 ([125.65.219.52]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 31 Jul 2008 08:35:02 +0000 Received: from deftsp by 125.65.219.52 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 31 Jul 2008 08:35:02 +0000 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 1. As follow example, [[xxxx.xx][xxxx]] will be subjected to markup. ,---- | #+BEGIN_EXAMPLE | [[xxxx.xx][xxxx]] | #+END_EXAMPLE `---- However start the example lines with a colon works fine. 2. Press tab at the line "Exclusive or.", indent error. #+BEGIN_SRC emacs-lisp (defun org-xor (a b) "Exclusive or." (if a (not b) b)) #+END_SRC