From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: news@halloleo.hailmail.net Newsgroups: gmane.emacs.help Subject: Re: Hang with markdown-mode Date: Sun, 23 Mar 2014 22:56:26 -0700 (PDT) Message-ID: References: <68da3091-962c-478c-8439-6dee0baee72c@googlegroups.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: ger.gmane.org 1395654186 24741 80.91.229.3 (24 Mar 2014 09:43:06 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 24 Mar 2014 09:43:06 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Mar 24 10:43:16 2014 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 1WS1PX-0006gi-Ft for geh-help-gnu-emacs@m.gmane.org; Mon, 24 Mar 2014 10:43:15 +0100 Original-Received: from localhost ([::1]:35332 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WS1PX-0000Eu-3b for geh-help-gnu-emacs@m.gmane.org; Mon, 24 Mar 2014 05:43:15 -0400 X-Received: by 10.52.28.116 with SMTP id a20mr22094648vdh.2.1395640587635; Sun, 23 Mar 2014 22:56:27 -0700 (PDT) X-Received: by 10.50.82.98 with SMTP id h2mr282124igy.3.1395640587490; Sun, 23 Mar 2014 22:56:27 -0700 (PDT) Original-Path: usenet.stanford.edu!w5no8097969qac.0!news-out.google.com!bw18ni21564qab.1!nntp.google.com!ur14no12989816igb.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help In-Reply-To: <68da3091-962c-478c-8439-6dee0baee72c@googlegroups.com> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=152.91.10.14; posting-account=vwlbkQoAAACJSr8UmKXhX2ifrNZKRpYV Original-NNTP-Posting-Host: 152.91.10.14 User-Agent: G2/1.0 Injection-Date: Mon, 24 Mar 2014 05:56:27 +0000 Original-Xref: usenet.stanford.edu gnu.emacs.help:204438 X-Mailman-Approved-At: Mon, 24 Mar 2014 05:42:59 -0400 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:96710 Archived-At: On Tuesday, January 7, 2014 1:44:50 AM UTC+11, daniel...@gmail.com wrote: > [...] > > > Hello Leo, > > > > Did you have any luck in solving this issue. I am having a nearly identical problem (Emacs 24.3.1 & Markdown 2.0) and have yet to find a solution. > > > > Thanks, > > Daniel Hi Daniel Yes, recently I have solved the problem by unbinding `markdown-fontify-buffer-wiki-links`: (defun leo-markdown-fontify-buffer-wiki-links-empty () "Empty replacement for `markdown-fontify-buffer-wiki-links` due to hanging bug." (interactive)) (eval-after-load "markdown-mode" '(progn (fset 'markdown-fontify-buffer-wiki-links 'leo-markdown-fontify-buffer-wiki-links-empty))) But this is of course only a crutch... HTH, Leo