Hi List, 

here is a possible regexp bug in org.el I discovered by accident:

,---------------------------------------------
| 7734:       (and (not (looking-back "^\*+"))
`---------------------------------------------

#+begin_src emacs-lisp
(and (not (looking-back "^\*+")) ; missing backslash?
 (looking-at "[ \t]+") (replace-match ""))
(unless (eobp) (forward-char 1))
(when (looking-at "^\\*")
#+end_src

-- 
cheers,
Thorsten


Reply via email to