From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthew Lundin Subject: Bug: org-plain-list-ordered-item-terminator Date: Sat, 25 Apr 2009 20:39:11 -0500 Message-ID: <874owcmbwg.fsf@fastmail.fm> 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 1LxtL5-00029U-RW for emacs-orgmode@gnu.org; Sat, 25 Apr 2009 21:39:27 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LxtL0-00027T-6d for emacs-orgmode@gnu.org; Sat, 25 Apr 2009 21:39:26 -0400 Received: from [199.232.76.173] (port=47181 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LxtKz-00027H-T8 for emacs-orgmode@gnu.org; Sat, 25 Apr 2009 21:39:21 -0400 Received: from out3.smtp.messagingengine.com ([66.111.4.27]:58800) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LxtKz-0005TF-Kf for emacs-orgmode@gnu.org; Sat, 25 Apr 2009 21:39:21 -0400 Received: from crunchbang (unknown [96.248.144.226]) by mail.messagingengine.com (Postfix) with ESMTPSA id D1E7053E06 for ; Sat, 25 Apr 2009 21:39:17 -0400 (EDT) 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: Org Mode Mailing List When I set org-plain-list-ordered-item-terminator to 'paren like in "2)"' in the customize interface, I no longer able to use plain lists in org-mode, but instead get the following error: ,---- | org-at-item-p: Invalid regexp: "Unmatched ( or \\(" `---- In my custom settings, the setting looks like this: ,---- | [snip] | '(org-plain-list-ordered-item-terminator 41) | [snip] `---- Here's the backtrace: ,---- | Debugger entered--Lisp error: (error "Cannot return from the debugger in an error") | looking-at("\\([ ]*\\([-+]\\|\\([0-9]+))\\)\\|[ ]+\\*\\)\\( \\|$\\)") | org-at-item-p() | org-metaright(nil) | call-interactively(org-metaright nil nil) `---- And here are my other plain list settings: --8<---------------cut here---------------start------------->8--- (setq org-blank-before-new-entry '((heading . auto) (plain-list-item . auto))) (setq org-empty-line-terminates-plain-lists nil) (setq org-cycle-include-plain-lists nil) --8<---------------cut here---------------end--------------->8--- Thanks, Matt