* org.el (org-format-latex): Stop LaTeX fragment processing in
protected examples.
+2009-02-06 Carsten Dominik <dominik@science.uva.nl>
+
+ * org.el (org-format-latex): Stop LaTeX fragment processing in
+ protected examples.
+
2009-02-05 Glenn Morris <rgm@gnu.org>
* org-rmail.el (rmail-show-message): Update declaration.
(when (member m matchers)
(goto-char (point-min))
(while (re-search-forward re nil t)
- (when (or (not at) (equal (cdr at) (match-beginning n)))
+ (when (and (or (not at) (equal (cdr at) (match-beginning n)))
+ (not (get-text-property (match-beginning n)
+ 'org-protected)))
(setq txt (match-string n)
beg (match-beginning n) end (match-end n)
cnt (1+ cnt)