From mboxrd@z Thu Jan 1 00:00:00 1970 From: Martin Pohlack Subject: Re: Strange hiccups when running in server (also: Folding stops working) Date: Wed, 29 Jul 2009 14:34:16 +0200 Message-ID: <4A7041C8.7050603@os.inf.tu-dresden.de> References: <4A522979.2090805@os.inf.tu-dresden.de> <4A53075C.1020607@os.inf.tu-dresden.de> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------020704020205030701020903" Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MW8MY-0001kW-5o for emacs-orgmode@gnu.org; Wed, 29 Jul 2009 08:34:30 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MW8MS-0001hL-QH for emacs-orgmode@gnu.org; Wed, 29 Jul 2009 08:34:29 -0400 Received: from [199.232.76.173] (port=37899 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MW8MS-0001gx-4j for emacs-orgmode@gnu.org; Wed, 29 Jul 2009 08:34:24 -0400 Received: from os.inf.tu-dresden.de ([141.76.48.99]:43493) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MW8MQ-0007Mh-VG for emacs-orgmode@gnu.org; Wed, 29 Jul 2009 08:34:23 -0400 Received: from [217.9.48.20] (helo=[165.204.15.153]) by os.inf.tu-dresden.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69) id 1MW8MP-0003Oj-6r for emacs-orgmode@gnu.org; Wed, 29 Jul 2009 14:34:21 +0200 In-Reply-To: <4A53075C.1020607@os.inf.tu-dresden.de> 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 This is a multi-part message in MIME format. --------------020704020205030701020903 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Martin Pohlack wrote: > Sorry for the noise. > > A local package globally modified outline-heading-end-regexp which broke > folding via outline-mode. It wasn't a local package after all: simple-wiki.el is to blame here. It globally modifies "outline-regexp" and "outline-heading-end-regexp". For those using simple-wiki.el, please find a patch attached (already reported upstream). Cheers, Martin PS.: This is probably the same problem as described in an earlier thread called "Folding stops working". --------------020704020205030701020903 Content-Type: text/x-patch; name="buf_local.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="buf_local.diff" --- simple-wiki.el.orig 2009-07-29 10:53:26.706233000 +0200 +++ simple-wiki.el 2009-07-07 10:08:02.981394000 +0200 @@ -815,6 +817,8 @@ (set (make-local-variable (car pair)) (cdr pair)))) (unless (equal simple-wiki-outline-patterns 'none) + (make-local-variable 'outline-regexp) + (make-local-variable 'outline-heading-end-regexp) (setq outline-regexp (car simple-wiki-outline-patterns)) (setq outline-heading-end-regexp (cdr simple-wiki-outline-patterns))) --------------020704020205030701020903 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --------------020704020205030701020903--