From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Michal Sojka Newsgroups: gmane.emacs.help Subject: Re: Undebuggable error in .emacs Date: Mon, 22 Jul 2013 12:15:42 +0200 Message-ID: <87txjmrjch.fsf@steelpick.2x.cz> References: <8761wf6e8v.fsf@steelpick.2x.cz> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1374492708 1003 80.91.229.3 (22 Jul 2013 11:31:48 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 22 Jul 2013 11:31:48 +0000 (UTC) To: Kevin Rodgers , help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Jul 22 13:31:49 2013 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1V1ELD-0003sf-SK for geh-help-gnu-emacs@m.gmane.org; Mon, 22 Jul 2013 13:31:47 +0200 Original-Received: from localhost ([::1]:32997 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V1ELD-00068n-EM for geh-help-gnu-emacs@m.gmane.org; Mon, 22 Jul 2013 07:31:47 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:44465) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V1EL4-00068f-3m for help-gnu-emacs@gnu.org; Mon, 22 Jul 2013 07:31:39 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V1EL1-0001EC-G2 for help-gnu-emacs@gnu.org; Mon, 22 Jul 2013 07:31:38 -0400 Original-Received: from max.feld.cvut.cz ([147.32.192.36]:47463) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V1D9i-0000DY-GI for help-gnu-emacs@gnu.org; Mon, 22 Jul 2013 06:15:50 -0400 Original-Received: from localhost (unknown [192.168.200.7]) by max.feld.cvut.cz (Postfix) with ESMTP id 4C6C63CFE72; Mon, 22 Jul 2013 12:15:47 +0200 (CEST) X-Virus-Scanned: IMAP STYX AMAVIS Original-Received: from max.feld.cvut.cz ([192.168.200.1]) by localhost (styx.feld.cvut.cz [192.168.200.7]) (amavisd-new, port 10044) with ESMTP id 41hGQB_plNJc; Mon, 22 Jul 2013 12:15:42 +0200 (CEST) Original-Received: from imap.feld.cvut.cz (imap.feld.cvut.cz [147.32.192.34]) by max.feld.cvut.cz (Postfix) with ESMTP id 67E3C3CFE71; Mon, 22 Jul 2013 12:15:42 +0200 (CEST) Original-Received: from wsh by steelpick.2x.cz with local (Exim 4.80) (envelope-from ) id 1V1D9a-0000mL-4F; Mon, 22 Jul 2013 12:15:42 +0200 In-Reply-To: User-Agent: Notmuch/0.15.2 (http://notmuchmail.org) Emacs/24.3.1 (x86_64-pc-linux-gnu) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 147.32.192.36 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:92315 Archived-At: Hi Kevin, On Tue, Jul 16 2013, Kevin Rodgers wrote: > On 7/12/13 8:32 AM, Michal Sojka wrote: > ... >> When I run `emacs --debug-init', no error is detected and emacs starts >> without executing the most of my .emacs. By trying to comment out >> various parts of my (huge) .emacs, I figured out that commenting the >> following line prevents the error. The line in question is: >> >> (setq notmuch-wash-original-regexp "^\\(--+\s?\\([oO]riginal [mM]essage\\|Messaggio Originale\\)\s?--+\s*\\|\s*_____*\s*\n\n\\(Da:\\|Von:\\) .*\\)$" >> >> The interesting thing is that this line has nothing to do with org-mode. >> It configures behavior of the notmuch email client. >> >> Does anybody know how to allow having the above line in my .emacs? > > Close the unbalanced open parenthesis: (setq notmuch-wash-original-regexp "...") Thanks for your reply. I have the parenthesis on the next line and I forgot to include it in my email. But I figured out that I have a missing closing parenthesis at another place. I discovered this with emacs compiled from bzr repo -- this version complained about parse error. Cheers, -Michal