|
From: | Matthew MacLean |
Subject: | Re: [O] re-search-forward hang in org-link-search |
Date: | Thu, 13 Aug 2015 12:36:14 -0600 |
It's not an Emacs bug. Your regular _expression_ whittles down to:
(defvar hang-re "^\\*+ *Mawile\\(?:[ ]+\\)+stuff\\(?:[ ]+\\)*$")
or even
(defvar hang-re "\\(?:[ ]+\\)+s")
That _expression_ matches the string of spaces separating the first
Mawhile headline from its tags in many many different ways, and is one
of the type of regular expressions warned about in the (Emacs Lisp
Reference) manual. We shouldn't be generating it, and it is a bug, but
it is in Org, not Emacs.
[Prev in Thread] | Current Thread | [Next in Thread] |